Skip to content

Commit 7401aa8

Browse files
juanvallejoluksa
authored andcommitted
implements ExistenceChecker intf for deployments and replicasets
1 parent 2845002 commit 7401aa8

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

pkg/oc/cli/describe/projectstatus.go

+16
Original file line numberDiff line numberDiff line change
@@ -298,12 +298,20 @@ func (d *ProjectStatusDescriber) Describe(namespace, name string) (string, error
298298
}
299299

300300
for _, standaloneDC := range standaloneDCs {
301+
if !standaloneDC.DeploymentConfig.Found() {
302+
continue
303+
}
304+
301305
fmt.Fprintln(out)
302306
printLines(out, indent, 0, describeDeploymentConfigInServiceGroup(f, standaloneDC, func(rc *kubegraph.ReplicationControllerNode) int32 {
303307
return graphview.MaxRecentContainerRestartsForRC(g, rc)
304308
})...)
305309
}
306310
for _, standaloneDeployment := range standaloneDeployments {
311+
if !standaloneDeployment.Deployment.Found() {
312+
continue
313+
}
314+
307315
fmt.Fprintln(out)
308316
printLines(out, indent, 0, describeDeploymentInServiceGroup(f, standaloneDeployment, func(rs *kubegraph.ReplicaSetNode) int32 {
309317
return graphview.MaxRecentContainerRestartsForRS(g, rs)
@@ -318,11 +326,19 @@ func (d *ProjectStatusDescriber) Describe(namespace, name string) (string, error
318326
}
319327

320328
for _, standaloneRC := range standaloneRCs {
329+
if !standaloneRC.RC.Found() {
330+
continue
331+
}
332+
321333
fmt.Fprintln(out)
322334
printLines(out, indent, 0, describeRCInServiceGroup(f, standaloneRC.RC)...)
323335
}
324336

325337
for _, standaloneRS := range standaloneRSs {
338+
if !standaloneRS.RS.Found() {
339+
continue
340+
}
341+
326342
fmt.Fprintln(out)
327343
printLines(out, indent, 0, describeRSInServiceGroup(f, standaloneRS.RS)...)
328344
}

pkg/oc/graph/kubegraph/nodes/nodes.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ func EnsureStatefulSetNode(g osgraph.MutableUniqueGraph, statefulSet *kapps.Stat
229229
node := osgraph.EnsureUnique(g,
230230
nodeName,
231231
func(node osgraph.Node) graph.Node {
232-
return &StatefulSetNode{node, statefulSet}
232+
return &StatefulSetNode{node, statefulSet, false}
233233
},
234234
).(*StatefulSetNode)
235235

pkg/oc/graph/kubegraph/nodes/types.go

+10
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,10 @@ type DeploymentNode struct {
379379
IsFound bool
380380
}
381381

382+
func (n DeploymentNode) Found() bool {
383+
return n.IsFound
384+
}
385+
382386
func (n DeploymentNode) Object() interface{} {
383387
return n.Deployment
384388
}
@@ -430,6 +434,12 @@ func StatefulSetNodeName(o *kapps.StatefulSet) osgraph.UniqueName {
430434
type StatefulSetNode struct {
431435
osgraph.Node
432436
StatefulSet *kapps.StatefulSet
437+
438+
IsFound bool
439+
}
440+
441+
func (n StatefulSetNode) Found() bool {
442+
return n.IsFound
433443
}
434444

435445
func (n StatefulSetNode) Object() interface{} {

0 commit comments

Comments
 (0)