Skip to content

Commit 271fff8

Browse files
author
OpenShift Bot
authored
Merge pull request #11403 from juanvallejo/jvallejo/prevent-validating-forbidden-secrets
Merged by openshift-bot
2 parents f056a5b + 2b79482 commit 271fff8

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed

pkg/api/kubegraph/nodes/nodes.go

+10-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,11 @@ func EnsureSecretNode(g osgraph.MutableUniqueGraph, o *kapi.Secret) *SecretNode
7676
return osgraph.EnsureUnique(g,
7777
SecretNodeName(o),
7878
func(node osgraph.Node) graph.Node {
79-
return &SecretNode{node, o, true}
79+
return &SecretNode{
80+
Node: node,
81+
Secret: o,
82+
IsFound: true,
83+
}
8084
},
8185
).(*SecretNode)
8286
}
@@ -85,7 +89,11 @@ func FindOrCreateSyntheticSecretNode(g osgraph.MutableUniqueGraph, o *kapi.Secre
8589
return osgraph.EnsureUnique(g,
8690
SecretNodeName(o),
8791
func(node osgraph.Node) graph.Node {
88-
return &SecretNode{node, o, false}
92+
return &SecretNode{
93+
Node: node,
94+
Secret: o,
95+
IsFound: false,
96+
}
8997
},
9098
).(*SecretNode)
9199
}

pkg/cmd/cli/describe/projectstatus.go

+9-3
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ func (d *ProjectStatusDescriber) Describe(namespace, name string) (string, error
266266

267267
allMarkers := osgraph.Markers{}
268268
allMarkers = append(allMarkers, createForbiddenMarkers(forbiddenResources)...)
269-
for _, scanner := range getMarkerScanners(d.LogsCommandName, d.SecurityPolicyCommandFormat, d.SetProbeCommandName) {
269+
for _, scanner := range getMarkerScanners(d.LogsCommandName, d.SecurityPolicyCommandFormat, d.SetProbeCommandName, forbiddenResources) {
270270
allMarkers = append(allMarkers, scanner(g, f)...)
271271
}
272272

@@ -374,13 +374,19 @@ func createForbiddenMarkers(forbiddenResources sets.String) []osgraph.Marker {
374374
return markers
375375
}
376376

377-
func getMarkerScanners(logsCommandName, securityPolicyCommandFormat, setProbeCommandName string) []osgraph.MarkerScanner {
377+
func getMarkerScanners(logsCommandName, securityPolicyCommandFormat, setProbeCommandName string, forbiddenResources sets.String) []osgraph.MarkerScanner {
378378
return []osgraph.MarkerScanner{
379379
func(g osgraph.Graph, f osgraph.Namer) []osgraph.Marker {
380380
return kubeanalysis.FindRestartingPods(g, f, logsCommandName, securityPolicyCommandFormat)
381381
},
382382
kubeanalysis.FindDuelingReplicationControllers,
383-
kubeanalysis.FindMissingSecrets,
383+
func(g osgraph.Graph, f osgraph.Namer) []osgraph.Marker {
384+
// do not attempt to add markers for missing secrets if dealing with forbidden errors
385+
if forbiddenResources.Has("secrets") {
386+
return []osgraph.Marker{}
387+
}
388+
return kubeanalysis.FindMissingSecrets(g, f)
389+
},
384390
kubeanalysis.FindHPASpecsMissingCPUTargets,
385391
kubeanalysis.FindHPASpecsMissingScaleRefs,
386392
kubeanalysis.FindOverlappingHPAs,

0 commit comments

Comments
 (0)