Skip to content

Commit 3b2bbe5

Browse files
author
OpenShift Bot
authored
Merge pull request #11968 from juanvallejo/jvallejo/update-missing-probe-severity-to-info
Merged by openshift-bot
2 parents 271fff8 + 2ce9162 commit 3b2bbe5

File tree

4 files changed

+45
-32
lines changed

4 files changed

+45
-32
lines changed

pkg/api/graph/interfaces.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ type Severity string
2828

2929
const (
3030
// InfoSeverity is interesting
31-
// TODO: Consider what to do with this once we revisit the graph api - currently not used.
31+
// Currently used in missing probe markers
3232
InfoSeverity Severity = "info"
3333
// WarningSeverity is probably wrong, but we aren't certain
3434
WarningSeverity Severity = "warning"

pkg/api/kubegraph/analysis/podspec.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func FindMissingLivenessProbes(g osgraph.Graph, f osgraph.Namer, setProbeCommand
100100
Node: podSpecNode,
101101
RelatedNodes: []graph.Node{topLevelNode},
102102

103-
Severity: osgraph.WarningSeverity,
103+
Severity: osgraph.InfoSeverity,
104104
Key: MissingLivenessProbeWarning,
105105
Message: fmt.Sprintf("%s has no liveness probe to verify pods are still running.",
106106
topLevelString),

pkg/cmd/cli/describe/projectstatus.go

+42-29
Original file line numberDiff line numberDiff line change
@@ -282,44 +282,31 @@ func (d *ProjectStatusDescriber) Describe(namespace, name string) (string, error
282282
errorSuggestions := 0
283283
if len(errorMarkers) > 0 {
284284
fmt.Fprintln(out, "Errors:")
285-
for _, marker := range errorMarkers {
286-
fmt.Fprintln(out, indent+"* "+marker.Message)
287-
if len(marker.Suggestion) > 0 {
288-
errorSuggestions++
289-
if d.Suggest {
290-
switch s := marker.Suggestion.String(); {
291-
case strings.Contains(s, "\n"):
292-
fmt.Fprintln(out)
293-
for _, line := range strings.Split(s, "\n") {
294-
fmt.Fprintln(out, indent+" "+line)
295-
}
296-
case len(s) > 0:
297-
fmt.Fprintln(out, indent+" try: "+s)
298-
}
299-
}
300-
}
301-
}
285+
errorSuggestions += printMarkerSuggestions(errorMarkers, d.Suggest, out, indent)
302286
}
303287

304288
warningMarkers := allMarkers.BySeverity(osgraph.WarningSeverity)
305289
if len(warningMarkers) > 0 {
306290
if d.Suggest {
291+
// add linebreak between Errors list and Warnings list
292+
if len(errorMarkers) > 0 {
293+
fmt.Fprintln(out)
294+
}
307295
fmt.Fprintln(out, "Warnings:")
308296
}
309-
for _, marker := range warningMarkers {
310-
if d.Suggest {
311-
fmt.Fprintln(out, indent+"* "+marker.Message)
312-
switch s := marker.Suggestion.String(); {
313-
case strings.Contains(s, "\n"):
314-
fmt.Fprintln(out)
315-
for _, line := range strings.Split(s, "\n") {
316-
fmt.Fprintln(out, indent+" "+line)
317-
}
318-
case len(s) > 0:
319-
fmt.Fprintln(out, indent+" try: "+s)
320-
}
297+
printMarkerSuggestions(warningMarkers, d.Suggest, out, indent)
298+
}
299+
300+
infoMarkers := allMarkers.BySeverity(osgraph.InfoSeverity)
301+
if len(infoMarkers) > 0 {
302+
if d.Suggest {
303+
// add linebreak between Warnings list and Info List
304+
if len(warningMarkers) > 0 || len(errorMarkers) > 0 {
305+
fmt.Fprintln(out)
321306
}
307+
fmt.Fprintln(out, "Info:")
322308
}
309+
printMarkerSuggestions(infoMarkers, d.Suggest, out, indent)
323310
}
324311

325312
// We print errors by default and warnings if -v is used. If we get none,
@@ -362,6 +349,32 @@ func (d *ProjectStatusDescriber) Describe(namespace, name string) (string, error
362349
})
363350
}
364351

352+
// printMarkerSuggestions prints a formatted list of marker suggestions
353+
// and returns the amount of suggestions printed
354+
func printMarkerSuggestions(markers []osgraph.Marker, suggest bool, out *tabwriter.Writer, indent string) int {
355+
suggestionAmount := 0
356+
for _, marker := range markers {
357+
if len(marker.Suggestion) > 0 {
358+
suggestionAmount++
359+
}
360+
if len(marker.Suggestion) > 0 || len(marker.Message) > 0 {
361+
if suggest {
362+
fmt.Fprintln(out, indent+"* "+marker.Message)
363+
switch s := marker.Suggestion.String(); {
364+
case strings.Contains(s, "\n"):
365+
fmt.Fprintln(out)
366+
for _, line := range strings.Split(s, "\n") {
367+
fmt.Fprintln(out, indent+" "+line)
368+
}
369+
case len(s) > 0:
370+
fmt.Fprintln(out, indent+" try: "+s)
371+
}
372+
}
373+
}
374+
}
375+
return suggestionAmount
376+
}
377+
365378
func createForbiddenMarkers(forbiddenResources sets.String) []osgraph.Marker {
366379
markers := []osgraph.Marker{}
367380
for forbiddenResource := range forbiddenResources {

pkg/deploy/graph/analysis/dc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Node:
118118
// All of the containers in the deployment config lack a readiness probe
119119
markers = append(markers, osgraph.Marker{
120120
Node: uncastDcNode,
121-
Severity: osgraph.WarningSeverity,
121+
Severity: osgraph.InfoSeverity,
122122
Key: MissingReadinessProbeWarning,
123123
Message: fmt.Sprintf("%s has no readiness probe to verify pods are ready to accept traffic or ensure deployment is successful.",
124124
f.ResourceName(dcNode)),

0 commit comments

Comments
 (0)