From 7f96433ef80fd1b4c7da9296ecb20e703eef57a9 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 26 Oct 2023 11:40:51 -0700 Subject: [PATCH 1/2] hack/cluster-version-util/task_graph: Task-node granularity Make it easier to think about task-nodes as opaque objects by assigning them runlevel and component properties, and using that information to label names in the rendered graph. --- hack/cluster-version-util/task_graph.go | 8 ++- pkg/payload/task_graph.go | 93 +++++++++++++++++++------ pkg/payload/task_graph_test.go | 73 ++++++++++--------- 3 files changed, 117 insertions(+), 57 deletions(-) diff --git a/hack/cluster-version-util/task_graph.go b/hack/cluster-version-util/task_graph.go index 122ccd781..968f98263 100644 --- a/hack/cluster-version-util/task_graph.go +++ b/hack/cluster-version-util/task_graph.go @@ -12,7 +12,8 @@ import ( var ( taskGraphOpts struct { - parallel string + parallel string + granularity string } ) @@ -24,7 +25,8 @@ func newTaskGraphCmd() *cobra.Command { RunE: runTaskGraphCmd, } - cmd.Flags().StringVar(&taskGraphOpts.parallel, "parallel", "by-number-and-component", "The output directory where the manifests will be rendered.") + cmd.Flags().StringVar(&taskGraphOpts.parallel, "parallel", "by-number-and-component", "The parallelization strategy to use (by-number-and-component (default), flatten-by-number-and-component, or permute-flatten-by-number-and-component).") + cmd.Flags().StringVar(&taskGraphOpts.granularity, "granularity", "task-node", "The output granularity to use (task-node (default) or manifest).") return cmd } @@ -59,7 +61,7 @@ func runTaskGraphCmd(cmd *cobra.Command, args []string) error { return fmt.Errorf("unrecognized parallel strategy %q", taskGraphOpts.parallel) } - fmt.Println(graph.Tree()) + fmt.Println(graph.Tree(taskGraphOpts.granularity)) return nil } diff --git a/pkg/payload/task_graph.go b/pkg/payload/task_graph.go index e96070097..2a41a3530 100644 --- a/pkg/payload/task_graph.go +++ b/pkg/payload/task_graph.go @@ -5,6 +5,7 @@ import ( "fmt" "math/rand" "regexp" + "strconv" "strings" "sync" @@ -25,6 +26,20 @@ const ( groupComponent = 2 ) +// matchValues takes a reMatchPattern match and returns the runlevel and component. +func matchValues(match []string) (int, string) { + if match == nil { + return 0, "" + } + + runlevel, err := strconv.Atoi(match[groupNumber]) + if err != nil { + panic(err) + } + + return runlevel, match[groupComponent] +} + // ByNumberAndComponent creates parallelization for tasks whose original filenames are of the form // 0000_NN_NAME_* - files that share 0000_NN_NAME_ are run in serial, but chunks of files that have // the same 0000_NN but different NAME can be run in parallel. If the input is not sorted in an order @@ -45,7 +60,6 @@ func ByNumberAndComponent(tasks []*Task) [][]*TaskNode { } var buckets [][]*TaskNode - var lastNode *TaskNode for i := 0; i < count; { matchBase := matches[i] j := i + 1 @@ -56,26 +70,31 @@ func ByNumberAndComponent(tasks []*Task) [][]*TaskNode { break } if matchBase[groupComponent] != matchNext[groupComponent] { - groups = append(groups, &TaskNode{Tasks: tasks[i:j]}) + node := &TaskNode{ + Tasks: tasks[i:j], + } + node.runlevel, node.component = matchValues(matchBase) + groups = append(groups, node) i = j } matchBase = matchNext } if len(groups) > 0 { - groups = append(groups, &TaskNode{Tasks: tasks[i:j]}) + node := &TaskNode{ + Tasks: tasks[i:j], + } + node.runlevel, node.component = matchValues(matchBase) + groups = append(groups, node) i = j buckets = append(buckets, groups) - lastNode = nil continue } - if lastNode == nil { - lastNode = &TaskNode{Tasks: append([]*Task(nil), tasks[i:j]...)} - i = j - buckets = append(buckets, []*TaskNode{lastNode}) - continue + node := &TaskNode{ + Tasks: append([]*Task(nil), tasks[i:j]...), } - lastNode.Tasks = append(lastNode.Tasks, tasks[i:j]...) + node.runlevel, node.component = matchValues(matchBase) i = j + buckets = append(buckets, []*TaskNode{node}) } return buckets } @@ -105,21 +124,32 @@ func FlattenByNumberAndComponent(tasks []*Task) [][]*TaskNode { break } if matchBase[groupComponent] != matchNext[groupComponent] { - groups = append(groups, &TaskNode{Tasks: tasks[i:j]}) + node := &TaskNode{ + Tasks: tasks[i:j], + } + node.runlevel, node.component = matchValues(matchBase) + groups = append(groups, node) i = j } matchBase = matchNext } if len(groups) > 0 { - groups = append(groups, &TaskNode{Tasks: tasks[i:j]}) + node := &TaskNode{ + Tasks: tasks[i:j], + } + node.runlevel, node.component = matchValues(matchBase) + groups = append(groups, node) i = j lastNode = nil continue } if lastNode == nil { - lastNode = &TaskNode{Tasks: append([]*Task(nil), tasks[i:j]...)} - i = j + lastNode = &TaskNode{ + Tasks: append([]*Task(nil), tasks[i:j]...), + } + lastNode.runlevel, lastNode.component = matchValues(matches[i]) groups = append(groups, lastNode) + i = j continue } lastNode.Tasks = append(lastNode.Tasks, tasks[i:j]...) @@ -137,6 +167,12 @@ type TaskNode struct { Tasks []*Task // Out is a list of node indices to which there is an edge from this node (=dependents). Out []int + + // runlevel is task's run level, extracted from the manifest filename. + runlevel int + + // component is task's component name, extracted from the manifest filename. + component string } func (n *TaskNode) String() string { @@ -148,7 +184,7 @@ func (n *TaskNode) String() string { } arr = append(arr, t.Manifest.GVK.String()) } - return "{Tasks: " + strings.Join(arr, ", ") + "}" + return fmt.Sprintf("{RunLevel: %d, Component: %q, Tasks: %s}", n.runlevel, n.component, strings.Join(arr, ", ")) } func (n *TaskNode) replaceIn(index, with int) { @@ -370,21 +406,34 @@ func (g *TaskGraph) Roots() []int { } // Tree renders the task graph in Graphviz DOT. -func (g *TaskGraph) Tree() string { +func (g *TaskGraph) Tree(granularity string) string { out := []string{ "digraph tasks {", " labelloc=t;", " rankdir=TB;", } for i, node := range g.Nodes { - label := make([]string, 0, len(node.Tasks)) - for _, task := range node.Tasks { - label = append(label, strings.Replace(task.String(), "\"", "", -1)) + var label string + if node.runlevel != 0 || node.component != "" { + label = fmt.Sprintf("%02d-%s, %d manifests", node.runlevel, node.component, len(node.Tasks)) + } else { + label = fmt.Sprintf("%d manifests", len(node.Tasks)) } - if len(label) == 0 { - label = append(label, "no manifests") + switch granularity { + case "manifest": + labels := make([]string, 0, len(node.Tasks)) + for _, task := range node.Tasks { + labels = append(labels, strings.Replace(task.String(), "\"", "", -1)) + } + if len(labels) > 0 { + label = fmt.Sprintf("%s\\n%s", label, strings.Join(labels, "\\n")) + } + case "task-node": + // nothing to append + default: + panic(fmt.Sprintf("unrecognized granularity %q", granularity)) } - out = append(out, fmt.Sprintf(" %d [ label=\"%s\" shape=\"box\" ];", i, strings.Join(label, "\\n"))) + out = append(out, fmt.Sprintf(" %d [ label=\"%s\" shape=\"box\" ];", i, label)) } for i, node := range g.Nodes { for _, j := range node.Out { diff --git a/pkg/payload/task_graph_test.go b/pkg/payload/task_graph_test.go index 048bd9339..5fc472b03 100644 --- a/pkg/payload/task_graph_test.go +++ b/pkg/payload/task_graph_test.go @@ -118,7 +118,7 @@ func Test_TaskGraph_Split(t *testing.T) { } g.Split(tt.onFn) if !reflect.DeepEqual(g.Nodes, tt.expect) { - t.Fatalf("unexpected:\n%s\n%s", (&TaskGraph{Nodes: tt.expect}).Tree(), g.Tree()) + t.Fatalf("unexpected:\n%s\n%s", (&TaskGraph{Nodes: tt.expect}).Tree("manifest"), g.Tree("manifest")) } }) } @@ -151,9 +151,9 @@ func TestByNumberAndComponent(t *testing.T) { name: "no recognizable groups", tasks: tasks("a", "b", "c"), want: [][]*TaskNode{ - { - &TaskNode{Tasks: tasks("a", "b", "c")}, - }, + {&TaskNode{Tasks: tasks("a")}}, + {&TaskNode{Tasks: tasks("b")}}, + {&TaskNode{Tasks: tasks("c")}}, }, }, { @@ -166,36 +166,40 @@ func TestByNumberAndComponent(t *testing.T) { tasks: tasks("0000_01_x-y-z_file1", "0000_01_x-y-z_file2"), want: [][]*TaskNode{ { - &TaskNode{Tasks: tasks("0000_01_x-y-z_file1", "0000_01_x-y-z_file2")}, + &TaskNode{Tasks: tasks("0000_01_x-y-z_file1", "0000_01_x-y-z_file2"), runlevel: 1, component: "x-y-z"}, }, }, }, { + name: "one recognizable and two unrecognizeable", tasks: tasks("a", "0000_01_x-y-z_file1", "c"), want: [][]*TaskNode{ - { - &TaskNode{Tasks: tasks("a", "0000_01_x-y-z_file1", "c")}, - }, + {&TaskNode{Tasks: tasks("a")}}, + {&TaskNode{Tasks: tasks("0000_01_x-y-z_file1"), runlevel: 1, component: "x-y-z"}}, + {&TaskNode{Tasks: tasks("c")}}, }, }, { + name: "two tasks with the same runlevel and component", tasks: tasks("0000_01_x-y-z_file1", "0000_01_x-y-z_file2"), want: [][]*TaskNode{ { - &TaskNode{Tasks: tasks("0000_01_x-y-z_file1", "0000_01_x-y-z_file2")}, + &TaskNode{Tasks: tasks("0000_01_x-y-z_file1", "0000_01_x-y-z_file2"), runlevel: 1, component: "x-y-z"}, }, }, }, { + name: "two components in one runlevel", tasks: tasks("0000_01_a-b-c_file1", "0000_01_x-y-z_file2"), want: [][]*TaskNode{ { - &TaskNode{Tasks: tasks("0000_01_a-b-c_file1")}, - &TaskNode{Tasks: tasks("0000_01_x-y-z_file2")}, + &TaskNode{Tasks: tasks("0000_01_a-b-c_file1"), runlevel: 1, component: "a-b-c"}, + &TaskNode{Tasks: tasks("0000_01_x-y-z_file2"), runlevel: 1, component: "x-y-z"}, }, }, }, { + name: "unrecognized between single runlevel/component", tasks: tasks( "0000_01_a-b-c_file1", "0000_01_x-y-z_file1", @@ -208,18 +212,18 @@ func TestByNumberAndComponent(t *testing.T) { { &TaskNode{Tasks: tasks( "0000_01_a-b-c_file1", - )}, + ), runlevel: 1, component: "a-b-c"}, &TaskNode{Tasks: tasks( "0000_01_x-y-z_file1", "0000_01_x-y-z_file2", - )}, + ), runlevel: 1, component: "x-y-z"}, }, + {&TaskNode{Tasks: tasks("a")}}, { &TaskNode{Tasks: tasks( - "a", "0000_01_x-y-z_file2", "0000_01_x-y-z_file3", - )}, + ), runlevel: 1, component: "x-y-z"}, }, }, }, @@ -227,7 +231,7 @@ func TestByNumberAndComponent(t *testing.T) { for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { if got := ByNumberAndComponent(tt.tasks); !reflect.DeepEqual(got, tt.want) { - t.Fatalf("%s", cmp.Diff(tt.want, got)) + t.Fatalf("%s", cmp.Diff(tt.want, got, cmp.AllowUnexported(TaskNode{}, manifest.Manifest{}))) } }) } @@ -339,7 +343,7 @@ func TestShiftOrder(t *testing.T) { return test.tasks } if out := ShiftOrder(fn, test.step, test.stride)(nil); !reflect.DeepEqual(test.want, out) { - t.Errorf("%s", cmp.Diff(test.want, out)) + t.Errorf("%s", cmp.Diff(test.want, out, cmp.AllowUnexported(TaskNode{}, manifest.Manifest{}))) } }) } @@ -389,38 +393,42 @@ func TestFlattenByNumberAndComponent(t *testing.T) { tasks: tasks("0000_01_x-y-z_file1", "0000_01_x-y-z_file2"), want: [][]*TaskNode{ { - &TaskNode{Tasks: tasks("0000_01_x-y-z_file1", "0000_01_x-y-z_file2")}, + &TaskNode{Tasks: tasks("0000_01_x-y-z_file1", "0000_01_x-y-z_file2"), runlevel: 1, component: "x-y-z"}, }, }, }, { + name: "one recognizable and two unrecognizeable", tasks: tasks("a", "0000_01_x-y-z_file1", "c"), want: [][]*TaskNode{ { &TaskNode{Tasks: tasks("a")}, - &TaskNode{Tasks: tasks("0000_01_x-y-z_file1")}, + &TaskNode{Tasks: tasks("0000_01_x-y-z_file1"), runlevel: 1, component: "x-y-z"}, &TaskNode{Tasks: tasks("c")}, }, }, }, { + name: "two tasks with the same runlevel and component", tasks: tasks("0000_01_x-y-z_file1", "0000_01_x-y-z_file2"), want: [][]*TaskNode{ { - &TaskNode{Tasks: tasks("0000_01_x-y-z_file1", "0000_01_x-y-z_file2")}, + &TaskNode{Tasks: tasks("0000_01_x-y-z_file1", "0000_01_x-y-z_file2"), runlevel: 1, component: "x-y-z"}, }, }, }, { + name: "two components in one runlevel", tasks: tasks("0000_01_a-b-c_file1", "0000_01_x-y-z_file2"), want: [][]*TaskNode{ { - &TaskNode{Tasks: tasks("0000_01_a-b-c_file1")}, - &TaskNode{Tasks: tasks("0000_01_x-y-z_file2")}, + &TaskNode{Tasks: tasks("0000_01_a-b-c_file1"), runlevel: 1, component: "a-b-c"}, + &TaskNode{Tasks: tasks("0000_01_x-y-z_file2"), runlevel: 1, component: "x-y-z"}, }, }, }, { + name: "unrecognized between single runlevel/component", tasks: tasks( "0000_01_a-b-c_file1", "0000_01_x-y-z_file1", @@ -433,22 +441,23 @@ func TestFlattenByNumberAndComponent(t *testing.T) { { &TaskNode{Tasks: tasks( "0000_01_a-b-c_file1", - )}, + ), runlevel: 1, component: "a-b-c"}, &TaskNode{Tasks: tasks( "0000_01_x-y-z_file1", "0000_01_x-y-z_file2", - )}, + ), runlevel: 1, component: "x-y-z"}, &TaskNode{Tasks: tasks( "a", )}, &TaskNode{Tasks: tasks( "0000_01_x-y-z_file2", "0000_01_x-y-z_file3", - )}, + ), runlevel: 1, component: "x-y-z"}, }, }, }, { + name: "one component spread over two runlevels", tasks: tasks( "0000_01_a-b-c_file1", "0000_01_x-y-z_file1", @@ -460,15 +469,15 @@ func TestFlattenByNumberAndComponent(t *testing.T) { { &TaskNode{Tasks: tasks( "0000_01_a-b-c_file1", - )}, + ), runlevel: 1, component: "a-b-c"}, &TaskNode{Tasks: tasks( "0000_01_x-y-z_file1", "0000_01_x-y-z_file2", - )}, + ), runlevel: 1, component: "x-y-z"}, &TaskNode{Tasks: tasks( "0000_02_x-y-z_file2", "0000_02_x-y-z_file3", - )}, + ), runlevel: 2, component: "x-y-z"}, }, }, }, @@ -476,7 +485,7 @@ func TestFlattenByNumberAndComponent(t *testing.T) { for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { if got := FlattenByNumberAndComponent(tt.tasks); !reflect.DeepEqual(got, tt.want) { - t.Fatalf("%s", cmp.Diff(tt.want, got)) + t.Fatalf("%s", cmp.Diff(tt.want, got, cmp.AllowUnexported(TaskNode{}, manifest.Manifest{}))) } }) } @@ -500,7 +509,7 @@ func Test_TaskGraph_real(t *testing.T) { g := NewTaskGraph(tasks) g.Split(SplitOnJobs) g.Parallelize(ByNumberAndComponent) - t.Logf("\n%s", g.Tree()) + t.Logf("\n%s", g.Tree("manifest")) t.Logf("original depth: %d", len(tasks)) } @@ -617,7 +626,7 @@ func Test_TaskGraph_example(t *testing.T) { g.Split(SplitOnJobs) g.Parallelize(ByNumberAndComponent) if !reflect.DeepEqual(g, tt.expect) { - t.Fatalf("unexpected:\n%s\n---\n%s", tt.expect.Tree(), g.Tree()) + t.Fatalf("unexpected:\n%s\n---\n%s", tt.expect.Tree("manifest"), g.Tree("manifest")) } }) } @@ -683,7 +692,7 @@ func Test_TaskGraph_bulkAdd(t *testing.T) { t.Errorf("TaskGraph.bulkAdd() = %v, want %v", got, tt.want) } if !reflect.DeepEqual(tt.expect, g.Nodes) { - t.Errorf("unexpected:\n%s\n---\n%s", (&TaskGraph{Nodes: tt.expect}).Tree(), g.Tree()) + t.Errorf("unexpected:\n%s\n---\n%s", (&TaskGraph{Nodes: tt.expect}).Tree("manifest"), g.Tree("manifest")) } }) } From e89c7a946d246f33b1ef84bbb052cc5020cfcd82 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 5 Aug 2025 11:26:36 -0700 Subject: [PATCH 2/2] docs/user/tasks-*by-number-and-component.svg: Update to 4.20 Using a similar process to cde8d50a8392 (docs/user/reconciliation: Document release-image application, 2019-06-10, #201) and 4353698c7f (docs/user/tasks-*by-number-and-component.svg: Update to 4.13, 2023-07-25, #949), but for 4.20.0-ec.5. The SVGs were generated with the new --granularity flag set to 'manifest', to make it easier for cluster operator maintainers to understand how their manifests are collected into task nodes: $ go build ./hack/cluster-version-util $ mkdir /tmp/release $ oc image extract quay.io/openshift-release-dev/ocp-release:4.20.0-ec.5-x86_64[-1] --path /:/tmp/release $ mkdir /tmp/release/manifests $ ./cluster-version-util task-graph --granularity manifest /tmp/release | dot -Tsvg >docs/user/tasks-by-number-and-component.svg $ ./cluster-version-util task-graph --granularity manifest --parallel flatten-by-number-and-component /tmp/release | dot -Tsvg >docs/user/tasks-flatten-by-number-and-component.svg using: $ go version go version go1.23.6 linux/amd64 $ dot -V dot - graphviz version 2.43.0 (0) --- docs/user/tasks-by-number-and-component.svg | 3318 +++++++++-------- .../tasks-flatten-by-number-and-component.svg | 2442 ++++++------ 2 files changed, 3159 insertions(+), 2601 deletions(-) diff --git a/docs/user/tasks-by-number-and-component.svg b/docs/user/tasks-by-number-and-component.svg index e756a128c..c68b3e6fb 100644 --- a/docs/user/tasks-by-number-and-component.svg +++ b/docs/user/tasks-by-number-and-component.svg @@ -4,1940 +4,2236 @@ - - + + tasks - + 0 - -no manifests + +0 manifests 1 - -namespace openshift-config-operator (1 of 862) + +00-config-operator, 1 manifests +namespace openshift-config-operator (1 of 930) 0->1 - - + + 2 - -customresourcedefinition rolebindingrestrictions.authorization.openshift.io (2 of 862) + +03-cloud-credential-operator, 2 manifests +namespace openshift-cloud-credential-operator (2 of 930) +customresourcedefinition credentialsrequests.cloudcredential.openshift.io (3 of 930) 1->2 - - + + 3 - -namespace openshift-cloud-credential-operator (3 of 862) -customresourcedefinition credentialsrequests.cloudcredential.openshift.io (4 of 862) + +03-config-operator, 5 manifests +customresourcedefinition clusterresourcequotas.quota.openshift.io (4 of 930) +customresourcedefinition proxies.config.openshift.io (5 of 930) +customresourcedefinition rolebindingrestrictions.authorization.openshift.io (6 of 930) +customresourcedefinition securitycontextconstraints.security.openshift.io (7 of 930) +customresourcedefinition rangeallocations.security.internal.openshift.io (8 of 930) 1->3 - - + + 4 - -customresourcedefinition proxies.config.openshift.io (5 of 862) + +03-marketplace-operator, 1 manifests +operatorhub cluster (9 of 930) 1->4 - - + + 5 - -customresourcedefinition operatorhubs.config.openshift.io (6 of 862) -operatorhub cluster (7 of 862) + +03-marketplace, 1 manifests +customresourcedefinition operatorhubs.config.openshift.io (10 of 930) 1->5 - - + + 6 - -customresourcedefinition clusterresourcequotas.quota.openshift.io (8 of 862) - - + +05-config-operator, 13 manifests +apiserver cluster (11 of 930) +authentication cluster (12 of 930) +console cluster (13 of 930) +dns cluster (14 of 930) +featuregate cluster (15 of 930) +image cluster (16 of 930) +infrastructure cluster (17 of 930) +ingress cluster (18 of 930) +network cluster (19 of 930) +oauth cluster (20 of 930) +project cluster (21 of 930) +proxy cluster (22 of 930) +scheduler cluster (23 of 930) + + -1->6 - - +2->6 + + + + + +3->6 + + + + + +4->6 + + + + + +5->6 + + 7 - -customresourcedefinition securitycontextconstraints.security.openshift.io (9 of 862) - - - -1->7 - - + +10-config-operator, 31 manifests +customresourcedefinition apiservers.config.openshift.io (24 of 930) +customresourcedefinition authentications.config.openshift.io (25 of 930) +customresourcedefinition configs.operator.openshift.io (26 of 930) +customresourcedefinition consoles.config.openshift.io (27 of 930) +customresourcedefinition dnses.config.openshift.io (28 of 930) +customresourcedefinition featuregates.config.openshift.io (29 of 930) +customresourcedefinition imagecontentpolicies.config.openshift.io (30 of 930) +customresourcedefinition imagecontentsourcepolicies.operator.openshift.io (31 of 930) +customresourcedefinition imagedigestmirrorsets.config.openshift.io (32 of 930) +customresourcedefinition images.config.openshift.io (33 of 930) +customresourcedefinition imagetagmirrorsets.config.openshift.io (34 of 930) +customresourcedefinition infrastructures.config.openshift.io (35 of 930) +customresourcedefinition ingresses.config.openshift.io (36 of 930) +customresourcedefinition networks.config.openshift.io (37 of 930) +customresourcedefinition nodes.config.openshift.io (38 of 930) +customresourcedefinition oauths.config.openshift.io (39 of 930) +namespace openshift-config-managed (40 of 930) +namespace openshift-config (41 of 930) +config cluster (42 of 930) +customresourcedefinition projects.config.openshift.io (43 of 930) +role openshift-config-operator/prometheus-k8s (44 of 930) +customresourcedefinition schedulers.config.openshift.io (45 of 930) +clusterrole system:openshift:cluster-config-operator:cluster-reader (46 of 930) +node cluster (47 of 930) +rolebinding openshift-config-operator/prometheus-k8s (48 of 930) +service openshift-config-operator/metrics (49 of 930) +servicemonitor openshift-config-operator/config-operator (50 of 930) +clusterrolebinding system:openshift:operator:openshift-config-operator (51 of 930) +serviceaccount openshift-config-operator/openshift-config-operator (52 of 930) +deployment openshift-config-operator/openshift-config-operator (53 of 930) +clusteroperator config-operator (54 of 930) + + + +6->7 + + 8 - -customresourcedefinition rangeallocations.security.internal.openshift.io (10 of 862) + +10-control-plane-machine-set, 1 manifests +customresourcedefinition controlplanemachinesets.machine.openshift.io (55 of 930) - - -1->8 - - + + +6->8 + + 9 - -no manifests - - - -2->9 - - - - - -3->9 - - - - - -4->9 - - - - - -5->9 - - + +10-openshift-controller-manager-operator, 1 manifests +build cluster (56 of 930) - + 6->9 - - - - - -7->9 - - - - - -8->9 - - + + 10 - -apiserver cluster (11 of 862) -authentication cluster (12 of 862) -console cluster (13 of 862) -dns cluster (14 of 862) -featuregate cluster (15 of 862) -image cluster (16 of 862) -infrastructure cluster (17 of 862) -ingress cluster (18 of 862) -network cluster (19 of 862) -oauth cluster (20 of 862) -project cluster (21 of 862) -proxy cluster (22 of 862) -scheduler cluster (23 of 862) - - - -9->10 - - + +10-openshift-controller-manager, 1 manifests +customresourcedefinition builds.config.openshift.io (57 of 930) + + + +6->10 + + 11 - -build cluster (24 of 862) + +10-operator-lifecycle-manager, 1 manifests +customresourcedefinition olms.operator.openshift.io (58 of 930) - - -9->11 - - + + +6->11 + + 12 - -no manifests + +12-etcd, 1 manifests +customresourcedefinition etcds.operator.openshift.io (59 of 930) + + + +7->12 + + + + + +8->12 + + + + + +9->12 + + 10->12 - - + + 11->12 - - + + 13 - -customresourcedefinition apiservers.config.openshift.io (25 of 862) -customresourcedefinition authentications.config.openshift.io (26 of 862) -customresourcedefinition configs.operator.openshift.io (27 of 862) -customresourcedefinition consoles.config.openshift.io (28 of 862) -customresourcedefinition dnses.config.openshift.io (29 of 862) -customresourcedefinition featuregates.config.openshift.io (30 of 862) -customresourcedefinition images.config.openshift.io (31 of 862) -customresourcedefinition imagecontentpolicies.config.openshift.io (32 of 862) -customresourcedefinition imagecontentsourcepolicies.operator.openshift.io (33 of 862) -customresourcedefinition imagedigestmirrorsets.config.openshift.io (34 of 862) -customresourcedefinition imagetagmirrorsets.config.openshift.io (35 of 862) -customresourcedefinition infrastructures.config.openshift.io (36 of 862) -customresourcedefinition ingresses.config.openshift.io (37 of 862) -customresourcedefinition networks.config.openshift.io (38 of 862) -customresourcedefinition nodes.config.openshift.io (39 of 862) -customresourcedefinition oauths.config.openshift.io (40 of 862) -namespace openshift-config-managed (41 of 862) -namespace openshift-config (42 of 862) -config cluster (43 of 862) -customresourcedefinition projects.config.openshift.io (44 of 862) -role openshift-config-operator/prometheus-k8s (45 of 862) -customresourcedefinition schedulers.config.openshift.io (46 of 862) -clusterrole system:openshift:cluster-config-operator:cluster-reader (47 of 862) -node cluster (48 of 862) -rolebinding openshift-config-operator/prometheus-k8s (49 of 862) -service openshift-config-operator/metrics (50 of 862) -servicemonitor openshift-config-operator/config-operator (51 of 862) -clusterrolebinding system:openshift:operator:openshift-config-operator (52 of 862) -serviceaccount openshift-config-operator/openshift-config-operator (53 of 862) -deployment openshift-config-operator/openshift-config-operator (54 of 862) -clusteroperator config-operator (55 of 862) + +20-etcd-operator, 12 manifests +namespace openshift-etcd-operator (60 of 930) +etcd cluster (61 of 930) +service openshift-etcd-operator/metrics (62 of 930) +configmap openshift-etcd-operator/etcd-operator-config (63 of 930) +configmap openshift-etcd-operator/etcd-ca-bundle (64 of 930) +configmap openshift-etcd-operator/etcd-service-ca-bundle (65 of 930) +secret openshift-etcd-operator/etcd-client (66 of 930) +clusterrolebinding system:openshift:operator:etcd-operator (67 of 930) +serviceaccount openshift-etcd-operator/etcd-operator (68 of 930) +deployment openshift-etcd-operator/etcd-operator (69 of 930) +clusteroperator etcd (70 of 930) +flowschema openshift-etcd-operator (71 of 930) 12->13 - - + + 14 - -customresourcedefinition builds.config.openshift.io (56 of 862) + +20-kube-apiserver-operator, 35 manifests +clusterrole system:openshift:scc:anyuid (72 of 930) +clusterrole system:openshift:scc:hostaccess (73 of 930) +clusterrole system:openshift:scc:hostmount-anyuid-v2 (74 of 930) +clusterrole system:openshift:scc:hostmount-anyuid (75 of 930) +clusterrole system:openshift:scc:hostmount (76 of 930) +clusterrole system:openshift:scc:hostnetwork-v2 (77 of 930) +clusterrole system:openshift:scc:hostnetwork (78 of 930) +clusterrole system:openshift:scc:nonroot-v2 (79 of 930) +clusterrole system:openshift:scc:nonroot (80 of 930) +clusterrole system:openshift:scc:privileged (81 of 930) +clusterrole system:openshift:scc:restricted-v2 (82 of 930) +clusterrole system:openshift:scc:restricted (83 of 930) +clusterrolebinding system:openshift:scc:restricted-v2 (84 of 930) +namespace openshift-kube-apiserver-operator (85 of 930) +securitycontextconstraints anyuid (86 of 930) +securitycontextconstraints hostaccess (87 of 930) +securitycontextconstraints hostmount-anyuid-v2 (88 of 930) +securitycontextconstraints hostmount-anyuid (89 of 930) +securitycontextconstraints hostnetwork-v2 (90 of 930) +securitycontextconstraints hostnetwork (91 of 930) +securitycontextconstraints nonroot-v2 (92 of 930) +securitycontextconstraints nonroot (93 of 930) +securitycontextconstraints privileged (94 of 930) +securitycontextconstraints restricted-v2 (95 of 930) +securitycontextconstraints restricted (96 of 930) +kubeapiserver cluster (97 of 930) +service openshift-kube-apiserver-operator/metrics (98 of 930) +configmap openshift-kube-apiserver-operator/kube-apiserver-operator-config (99 of 930) +clusterrolebinding system:openshift:operator:kube-apiserver-operator (100 of 930) +serviceaccount openshift-kube-apiserver-operator/kube-apiserver-operator (101 of 930) +deployment openshift-kube-apiserver-operator/kube-apiserver-operator (102 of 930) +clusteroperator kube-apiserver (103 of 930) +prioritylevelconfiguration openshift-control-plane-operators (104 of 930) +flowschema openshift-monitoring-metrics (105 of 930) +flowschema openshift-kube-apiserver-operator (106 of 930) 12->14 - - + + 15 - -customresourcedefinition etcds.operator.openshift.io (57 of 862) + +20-kube-apiserver, 1 manifests +customresourcedefinition kubeapiservers.operator.openshift.io (107 of 930) - + -13->15 - - - - - -14->15 - - +12->15 + + 16 - -namespace openshift-etcd-operator (58 of 862) -etcd cluster (59 of 862) -service openshift-etcd-operator/metrics (60 of 862) -configmap openshift-etcd-operator/etcd-operator-config (61 of 862) -configmap openshift-etcd-operator/etcd-ca-bundle (62 of 862) -configmap openshift-etcd-operator/etcd-service-ca-bundle (63 of 862) -secret openshift-etcd-operator/etcd-client (64 of 862) -clusterrolebinding system:openshift:operator:etcd-operator (65 of 862) -serviceaccount openshift-etcd-operator/etcd-operator (66 of 862) -deployment openshift-etcd-operator/etcd-operator (67 of 862) -clusteroperator etcd (68 of 862) -flowschema openshift-etcd-operator (69 of 862) + +0 manifests - + + +13->16 + + + + +14->16 + + + + + 15->16 - - + + 17 - -clusterrole system:openshift:scc:anyuid (70 of 862) -clusterrole system:openshift:scc:hostaccess (71 of 862) -clusterrole system:openshift:scc:hostmount (72 of 862) -clusterrole system:openshift:scc:hostnetwork-v2 (73 of 862) -clusterrole system:openshift:scc:hostnetwork (74 of 862) -clusterrole system:openshift:scc:nonroot-v2 (75 of 862) -clusterrole system:openshift:scc:nonroot (76 of 862) -clusterrole system:openshift:scc:privileged (77 of 862) -clusterrole system:openshift:scc:restricted-v2 (78 of 862) -clusterrole system:openshift:scc:restricted (79 of 862) -clusterrolebinding system:openshift:scc:restricted-v2 (80 of 862) -namespace openshift-kube-apiserver-operator (81 of 862) -securitycontextconstraints anyuid (82 of 862) -securitycontextconstraints hostaccess (83 of 862) -securitycontextconstraints hostmount-anyuid (84 of 862) -securitycontextconstraints hostnetwork-v2 (85 of 862) -securitycontextconstraints hostnetwork (86 of 862) -securitycontextconstraints nonroot-v2 (87 of 862) -securitycontextconstraints nonroot (88 of 862) -securitycontextconstraints privileged (89 of 862) -securitycontextconstraints restricted-v2 (90 of 862) -securitycontextconstraints restricted (91 of 862) -customresourcedefinition kubeapiservers.operator.openshift.io (92 of 862) -kubeapiserver cluster (93 of 862) -service openshift-kube-apiserver-operator/metrics (94 of 862) -configmap openshift-kube-apiserver-operator/kube-apiserver-operator-config (95 of 862) -clusterrolebinding system:openshift:operator:kube-apiserver-operator (96 of 862) -serviceaccount openshift-kube-apiserver-operator/kube-apiserver-operator (97 of 862) -deployment openshift-kube-apiserver-operator/kube-apiserver-operator (98 of 862) -clusteroperator kube-apiserver (99 of 862) -prioritylevelconfiguration openshift-control-plane-operators (100 of 862) -flowschema openshift-monitoring-metrics (101 of 862) -flowschema openshift-kube-apiserver-operator (102 of 862) - - - -15->17 - - + +25-kube-controller-manager-operator, 8 manifests +namespace openshift-kube-controller-manager-operator (108 of 930) +kubecontrollermanager cluster (109 of 930) +service openshift-kube-controller-manager-operator/metrics (110 of 930) +configmap openshift-kube-controller-manager-operator/kube-controller-manager-operator-config (111 of 930) +clusterrolebinding system:openshift:operator:kube-controller-manager-operator (112 of 930) +serviceaccount openshift-kube-controller-manager-operator/kube-controller-manager-operator (113 of 930) +deployment openshift-kube-controller-manager-operator/kube-controller-manager-operator (114 of 930) +clusteroperator kube-controller-manager (115 of 930) + + + +16->17 + + 18 - -no manifests + +25-kube-controller-manager, 1 manifests +customresourcedefinition kubecontrollermanagers.operator.openshift.io (116 of 930) - -16->18 - - - - -17->18 - - +16->18 + + 19 - -namespace openshift-kube-controller-manager-operator (103 of 862) -customresourcedefinition kubecontrollermanagers.operator.openshift.io (104 of 862) -kubecontrollermanager cluster (105 of 862) -service openshift-kube-controller-manager-operator/metrics (106 of 862) -configmap openshift-kube-controller-manager-operator/kube-controller-manager-operator-config (107 of 862) -clusterrolebinding system:openshift:operator:kube-controller-manager-operator (108 of 862) -serviceaccount openshift-kube-controller-manager-operator/kube-controller-manager-operator (109 of 862) -deployment openshift-kube-controller-manager-operator/kube-controller-manager-operator (110 of 862) -clusteroperator kube-controller-manager (111 of 862) - - + +25-kube-scheduler-operator, 8 manifests +namespace openshift-kube-scheduler-operator (117 of 930) +kubescheduler cluster (118 of 930) +service openshift-kube-scheduler-operator/metrics (119 of 930) +configmap openshift-kube-scheduler-operator/openshift-kube-scheduler-operator-config (120 of 930) +clusterrolebinding system:openshift:operator:cluster-kube-scheduler-operator (121 of 930) +serviceaccount openshift-kube-scheduler-operator/openshift-kube-scheduler-operator (122 of 930) +deployment openshift-kube-scheduler-operator/openshift-kube-scheduler-operator (123 of 930) +clusteroperator kube-scheduler (124 of 930) + + -18->19 - - +16->19 + + 20 - -namespace openshift-kube-scheduler-operator (112 of 862) -customresourcedefinition kubeschedulers.operator.openshift.io (113 of 862) -kubescheduler cluster (114 of 862) -service openshift-kube-scheduler-operator/metrics (115 of 862) -configmap openshift-kube-scheduler-operator/openshift-kube-scheduler-operator-config (116 of 862) -clusterrolebinding system:openshift:operator:cluster-kube-scheduler-operator (117 of 862) -serviceaccount openshift-kube-scheduler-operator/openshift-kube-scheduler-operator (118 of 862) -deployment openshift-kube-scheduler-operator/openshift-kube-scheduler-operator (119 of 862) -clusteroperator kube-scheduler (120 of 862) - - + +25-kube-scheduler, 1 manifests +customresourcedefinition kubeschedulers.operator.openshift.io (125 of 930) + + -18->20 - - +16->20 + + 21 - -namespace openshift-cloud-controller-manager-operator (121 of 862) -namespace openshift-cloud-controller-manager (122 of 862) -configmap openshift-cloud-controller-manager-operator/cloud-controller-manager-images (123 of 862) -serviceaccount openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager (124 of 862) -clusterrole system:openshift:operator:cloud-controller-manager (125 of 862) -role openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager (126 of 862) -role openshift-config/cluster-cloud-controller-manager (127 of 862) -rolebinding openshift-config/cluster-cloud-controller-manager (128 of 862) -role openshift-config-managed/cluster-cloud-controller-manager (129 of 862) -rolebinding openshift-config-managed/cluster-cloud-controller-manager (130 of 862) -clusterrolebinding system:openshift:operator:cloud-controller-manager (131 of 862) -rolebinding openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager (132 of 862) -rolebinding openshift-cloud-controller-manager/cluster-cloud-controller-manager (133 of 862) -serviceaccount openshift-cloud-controller-manager/cloud-controller-manager (134 of 862) -rolebinding openshift-cloud-controller-manager/cloud-controller-manager (135 of 862) -role openshift-cloud-controller-manager/cloud-controller-manager (136 of 862) -rolebinding kube-system/cloud-controller-manager (137 of 862) -role kube-system/cloud-controller-manager (138 of 862) -clusterrole cloud-controller-manager (139 of 862) -clusterrolebinding cloud-controller-manager (140 of 862) -rolebinding kube-system/cloud-controller-manager:apiserver-authentication-reader (141 of 862) -serviceaccount openshift-cloud-controller-manager/cloud-node-manager (142 of 862) -clusterrole cloud-node-manager (143 of 862) -clusterrolebinding cloud-node-manager (144 of 862) -serviceaccount kube-system/cloud-controller-manager (145 of 862) -clusterrole openstack-cloud-controller-manager (146 of 862) -clusterrolebinding openstack-cloud-controller-manager (147 of 862) -service openshift-cloud-controller-manager-operator/cloud-controller-manager-operator (148 of 862) -configmap openshift-cloud-controller-manager-operator/kube-rbac-proxy (149 of 862) -deployment openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager (150 of 862) -deployment openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager-operator (151 of 862) -clusteroperator cloud-controller-manager (152 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-openstack-cloud-controller-manager (153 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-azure-cloud-controller-manager (154 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-ibm-cloud-controller-manager (155 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-powervs-cloud-controller-manager (156 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-gcp-ccm (157 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-vsphere-cloud-controller-manager (158 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-nutanix-cloud-controller-manager (159 of 862) + +26-cloud-controller-manager-operator, 42 manifests +namespace openshift-cloud-controller-manager-operator (126 of 930) +namespace openshift-cloud-controller-manager (127 of 930) +configmap openshift-cloud-controller-manager-operator/cloud-controller-manager-images (128 of 930) +serviceaccount openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager (129 of 930) +clusterrole system:openshift:operator:cloud-controller-manager (130 of 930) +role openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager (131 of 930) +role openshift-config/cluster-cloud-controller-manager (132 of 930) +rolebinding openshift-config/cluster-cloud-controller-manager (133 of 930) +role openshift-config-managed/cluster-cloud-controller-manager (134 of 930) +role kube-system/cluster-cloud-controller-manager (135 of 930) +rolebinding openshift-config-managed/cluster-cloud-controller-manager (136 of 930) +clusterrolebinding system:openshift:operator:cloud-controller-manager (137 of 930) +rolebinding openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager (138 of 930) +rolebinding openshift-cloud-controller-manager/cluster-cloud-controller-manager (139 of 930) +rolebinding kube-system/cluster-cloud-controller-manager (140 of 930) +serviceaccount openshift-cloud-controller-manager/cloud-controller-manager (141 of 930) +rolebinding openshift-cloud-controller-manager/cloud-controller-manager (142 of 930) +role openshift-cloud-controller-manager/cloud-controller-manager (143 of 930) +rolebinding kube-system/cloud-controller-manager (144 of 930) +role kube-system/cloud-controller-manager (145 of 930) +clusterrole cloud-controller-manager (146 of 930) +clusterrolebinding cloud-controller-manager (147 of 930) +rolebinding kube-system/cloud-controller-manager:apiserver-authentication-reader (148 of 930) +serviceaccount openshift-cloud-controller-manager/cloud-node-manager (149 of 930) +clusterrole cloud-node-manager (150 of 930) +clusterrolebinding cloud-node-manager (151 of 930) +serviceaccount kube-system/cloud-controller-manager (152 of 930) +clusterrole openstack-cloud-controller-manager (153 of 930) +clusterrolebinding openstack-cloud-controller-manager (154 of 930) +service openshift-cloud-controller-manager-operator/cloud-controller-manager-operator (155 of 930) +configmap openshift-cloud-controller-manager-operator/kube-rbac-proxy (156 of 930) +networkpolicy openshift-cloud-controller-manager-operator/default-deny (157 of 930) +networkpolicy openshift-cloud-controller-manager/default-deny (158 of 930) +deployment openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager-operator (159 of 930) +clusteroperator cloud-controller-manager (160 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-openstack-cloud-controller-manager (161 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-azure-cloud-controller-manager (162 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-ibm-cloud-controller-manager (163 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-powervs-cloud-controller-manager (164 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-gcp-ccm (165 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-vsphere-cloud-controller-manager (166 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-nutanix-cloud-controller-manager (167 of 930) + + + +17->21 + + + + + +18->21 + + - + 19->21 - - + + - + 20->21 - - + + 22 - -customresourcedefinition controlplanemachinesets.machine.openshift.io (160 of 862) -serviceaccount openshift-machine-api/control-plane-machine-set-operator (161 of 862) -role openshift-machine-api/control-plane-machine-set-operator (162 of 862) -clusterrole control-plane-machine-set-operator (163 of 862) -clusterrolebinding control-plane-machine-set-operator (164 of 862) -rolebinding openshift-machine-api/control-plane-machine-set-operator (165 of 862) -service openshift-machine-api/control-plane-machine-set-operator (166 of 862) -deployment openshift-machine-api/control-plane-machine-set-operator (167 of 862) -clusteroperator control-plane-machine-set (168 of 862) -validatingwebhookconfiguration controlplanemachineset.machine.openshift.io (169 of 862) + +30-cluster-api, 2 manifests +customresourcedefinition ipaddresses.ipam.cluster.x-k8s.io (168 of 930) +customresourcedefinition ipaddressclaims.ipam.cluster.x-k8s.io (169 of 930) - + 21->22 - - + + 23 - -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-aws (170 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-azure (171 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-openstack (172 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-gcp (173 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-ovirt (174 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-vsphere (175 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-ibmcloud (176 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-powervs (177 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-nutanix (178 of 862) -namespace openshift-machine-api (179 of 862) -configmap openshift-machine-api/machine-api-operator-images (180 of 862) -configmap openshift-machine-api/mao-trusted-ca (181 of 862) -customresourcedefinition machines.machine.openshift.io (182 of 862) -customresourcedefinition machinesets.machine.openshift.io (183 of 862) -customresourcedefinition machinehealthchecks.machine.openshift.io (184 of 862) -customresourcedefinition metal3remediations.infrastructure.cluster.x-k8s.io (185 of 862) -customresourcedefinition metal3remediationtemplates.infrastructure.cluster.x-k8s.io (186 of 862) -service openshift-machine-api/machine-api-operator-machine-webhook (187 of 862) -service openshift-machine-api/machine-api-operator-webhook (188 of 862) -serviceaccount openshift-machine-api/machine-api-operator (189 of 862) -serviceaccount openshift-machine-api/machine-api-controllers (190 of 862) -serviceaccount openshift-machine-api/machine-api-termination-handler (191 of 862) -role openshift-config/machine-api-controllers (192 of 862) -role openshift-config-managed/machine-api-controllers (193 of 862) -role openshift-machine-api/machine-api-controllers (194 of 862) -clusterrole machine-api-controllers (195 of 862) -role openshift-machine-api/machine-api-operator (196 of 862) -clusterrole machine-api-operator (197 of 862) -clusterrole machine-api-operator-ext-remediation (198 of 862) -clusterrolebinding machine-api-operator-ext-remediation (199 of 862) -clusterrolebinding machine-api-controllers (200 of 862) -rolebinding openshift-machine-api/machine-api-controllers (201 of 862) -rolebinding openshift-config/machine-api-controllers (202 of 862) -rolebinding openshift-config-managed/machine-api-controllers (203 of 862) -clusterrolebinding machine-api-operator (204 of 862) -rolebinding openshift-machine-api/machine-api-operator (205 of 862) -rolebinding openshift-machine-api/prometheus-k8s-machine-api-operator (206 of 862) -role openshift-machine-api/prometheus-k8s-machine-api-operator (207 of 862) -clusterrole machine-api-operator:cluster-reader (208 of 862) -securitycontextconstraints machine-api-termination-handler (209 of 862) -configmap openshift-machine-api/kube-rbac-proxy (210 of 862) -clusterrole machine-api-controllers-metal3-remediation-aggregation (211 of 862) -clusterrole machine-api-controllers-metal3-remediation (212 of 862) -clusterrolebinding machine-api-controllers-baremetal (213 of 862) -service openshift-machine-api/machine-api-operator (214 of 862) -service openshift-machine-api/machine-api-controllers (215 of 862) -deployment openshift-machine-api/machine-api-operator (216 of 862) -clusteroperator machine-api (217 of 862) -machinehealthcheck openshift-machine-api/machine-api-termination-handler (218 of 862) + +30-control-plane-machine-set-operator, 9 manifests +serviceaccount openshift-machine-api/control-plane-machine-set-operator (170 of 930) +role openshift-machine-api/control-plane-machine-set-operator (171 of 930) +clusterrole control-plane-machine-set-operator (172 of 930) +clusterrolebinding control-plane-machine-set-operator (173 of 930) +rolebinding openshift-machine-api/control-plane-machine-set-operator (174 of 930) +service openshift-machine-api/control-plane-machine-set-operator (175 of 930) +deployment openshift-machine-api/control-plane-machine-set-operator (176 of 930) +clusteroperator control-plane-machine-set (177 of 930) +validatingwebhookconfiguration controlplanemachineset.machine.openshift.io (178 of 930) - + 21->23 - - + + 24 - -customresourcedefinition openshiftapiservers.operator.openshift.io (219 of 862) + +30-machine-api-operator, 48 manifests +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-aws (179 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-azure (180 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-openstack (181 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-gcp (182 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-vsphere (183 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-ibmcloud (184 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-powervs (185 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-nutanix (186 of 930) +namespace openshift-machine-api (187 of 930) +configmap openshift-machine-api/machine-api-operator-images (188 of 930) +configmap openshift-machine-api/mao-trusted-ca (189 of 930) +customresourcedefinition machines.machine.openshift.io (190 of 930) +customresourcedefinition machinesets.machine.openshift.io (191 of 930) +customresourcedefinition machinehealthchecks.machine.openshift.io (192 of 930) +customresourcedefinition metal3remediations.infrastructure.cluster.x-k8s.io (193 of 930) +customresourcedefinition metal3remediationtemplates.infrastructure.cluster.x-k8s.io (194 of 930) +service openshift-machine-api/machine-api-operator-machine-webhook (195 of 930) +service openshift-machine-api/machine-api-operator-webhook (196 of 930) +serviceaccount openshift-machine-api/machine-api-operator (197 of 930) +serviceaccount openshift-machine-api/machine-api-controllers (198 of 930) +serviceaccount openshift-machine-api/machine-api-termination-handler (199 of 930) +role openshift-config/machine-api-controllers (200 of 930) +role openshift-config-managed/machine-api-controllers (201 of 930) +role openshift-machine-api/machine-api-controllers (202 of 930) +clusterrole machine-api-controllers (203 of 930) +role openshift-machine-api/machine-api-operator (204 of 930) +clusterrole machine-api-operator (205 of 930) +clusterrole machine-api-operator-ext-remediation (206 of 930) +clusterrolebinding machine-api-operator-ext-remediation (207 of 930) +clusterrolebinding machine-api-controllers (208 of 930) +rolebinding openshift-machine-api/machine-api-controllers (209 of 930) +rolebinding openshift-config/machine-api-controllers (210 of 930) +rolebinding openshift-config-managed/machine-api-controllers (211 of 930) +clusterrolebinding machine-api-operator (212 of 930) +rolebinding openshift-machine-api/machine-api-operator (213 of 930) +rolebinding openshift-machine-api/prometheus-k8s-machine-api-operator (214 of 930) +role openshift-machine-api/prometheus-k8s-machine-api-operator (215 of 930) +clusterrole machine-api-operator:cluster-reader (216 of 930) +securitycontextconstraints machine-api-termination-handler (217 of 930) +configmap openshift-machine-api/kube-rbac-proxy (218 of 930) +clusterrole machine-api-controllers-metal3-remediation-aggregation (219 of 930) +clusterrole machine-api-controllers-metal3-remediation (220 of 930) +clusterrolebinding machine-api-controllers-baremetal (221 of 930) +service openshift-machine-api/machine-api-operator (222 of 930) +service openshift-machine-api/machine-api-controllers (223 of 930) +deployment openshift-machine-api/machine-api-operator (224 of 930) +clusteroperator machine-api (225 of 930) +machinehealthcheck openshift-machine-api/machine-api-termination-handler (226 of 930) - + 21->24 - - + + 25 - -customresourcedefinition baremetalhosts.metal3.io (220 of 862) -customresourcedefinition bmceventsubscriptions.metal3.io (221 of 862) -customresourcedefinition firmwareschemas.metal3.io (222 of 862) -customresourcedefinition hardwaredata.metal3.io (223 of 862) -customresourcedefinition hostfirmwaresettings.metal3.io (224 of 862) -customresourcedefinition preprovisioningimages.metal3.io (225 of 862) -configmap openshift-machine-api/cluster-baremetal-operator-images (226 of 862) -configmap openshift-machine-api/cbo-trusted-ca (227 of 862) -customresourcedefinition provisionings.metal3.io (228 of 862) -service openshift-machine-api/cluster-baremetal-operator-service (229 of 862) -service openshift-machine-api/cluster-baremetal-webhook-service (230 of 862) -serviceaccount openshift-machine-api/cluster-baremetal-operator (231 of 862) -configmap openshift-machine-api/baremetal-kube-rbac-proxy (232 of 862) -rolebinding openshift-machine-api/prometheus-k8s-cluster-baremetal-operator (233 of 862) -role openshift-machine-api/prometheus-k8s-cluster-baremetal-operator (234 of 862) -role openshift-machine-api/cluster-baremetal-operator (235 of 862) -clusterrole cluster-baremetal-operator (236 of 862) -rolebinding openshift-machine-api/cluster-baremetal-operator (237 of 862) -clusterrolebinding openshift-machine-api/cluster-baremetal-operator (238 of 862) -deployment openshift-machine-api/cluster-baremetal-operator (239 of 862) -clusteroperator baremetal (240 of 862) -customresourcedefinition kubestorageversionmigrators.operator.openshift.io (241 of 862) -namespace openshift-cluster-storage-operator (242 of 862) - - - -22->25 - - + +30-openshift-apiserver, 1 manifests +customresourcedefinition openshiftapiservers.operator.openshift.io (227 of 930) - - -23->25 - - - - + -24->25 - - +21->25 + + 26 - -clusterrole system:openshift:cloud-credential-operator:cluster-reader (243 of 862) -customresourcedefinition cloudcredentials.operator.openshift.io (244 of 862) -clusterrolebinding cloud-credential-operator-rolebinding (245 of 862) -clusterrole cloud-credential-operator-role (246 of 862) -rolebinding openshift-config-managed/cloud-credential-operator (247 of 862) -role openshift-config-managed/cloud-credential-operator-role (248 of 862) -cloudcredential cluster (249 of 862) -rolebinding openshift-cloud-credential-operator/cloud-credential-operator (250 of 862) -role openshift-cloud-credential-operator/cloud-credential-operator-role (251 of 862) -service openshift-cloud-credential-operator/controller-manager-service (252 of 862) -service openshift-cloud-credential-operator/cco-metrics (253 of 862) -configmap openshift-cloud-credential-operator/cco-trusted-ca (254 of 862) -serviceaccount openshift-cloud-credential-operator/cloud-credential-operator (255 of 862) -deployment openshift-cloud-credential-operator/cloud-credential-operator (256 of 862) -clusteroperator cloud-credential (257 of 862) -credentialsrequest openshift-cloud-credential-operator/cloud-credential-operator-gcp-ro-creds (258 of 862) -credentialsrequest openshift-cloud-credential-operator/cloud-credential-operator-iam-ro (259 of 862) + +31-cluster-baremetal-operator, 24 manifests +customresourcedefinition baremetalhosts.metal3.io (228 of 930) +customresourcedefinition bmceventsubscriptions.metal3.io (229 of 930) +customresourcedefinition dataimages.metal3.io (230 of 930) +customresourcedefinition firmwareschemas.metal3.io (231 of 930) +customresourcedefinition hardwaredata.metal3.io (232 of 930) +customresourcedefinition hostfirmwarecomponents.metal3.io (233 of 930) +customresourcedefinition hostfirmwaresettings.metal3.io (234 of 930) +customresourcedefinition hostupdatepolicies.metal3.io (235 of 930) +customresourcedefinition preprovisioningimages.metal3.io (236 of 930) +configmap openshift-machine-api/cluster-baremetal-operator-images (237 of 930) +configmap openshift-machine-api/cbo-trusted-ca (238 of 930) +customresourcedefinition provisionings.metal3.io (239 of 930) +service openshift-machine-api/cluster-baremetal-operator-service (240 of 930) +service openshift-machine-api/cluster-baremetal-webhook-service (241 of 930) +serviceaccount openshift-machine-api/cluster-baremetal-operator (242 of 930) +configmap openshift-machine-api/baremetal-kube-rbac-proxy (243 of 930) +rolebinding openshift-machine-api/prometheus-k8s-cluster-baremetal-operator (244 of 930) +role openshift-machine-api/prometheus-k8s-cluster-baremetal-operator (245 of 930) +role openshift-machine-api/cluster-baremetal-operator (246 of 930) +clusterrole cluster-baremetal-operator (247 of 930) +rolebinding openshift-machine-api/cluster-baremetal-operator (248 of 930) +clusterrolebinding openshift-machine-api/cluster-baremetal-operator (249 of 930) +deployment openshift-machine-api/cluster-baremetal-operator (250 of 930) +clusteroperator baremetal (251 of 930) + + + +22->26 + + + + + +23->26 + + + + + +24->26 + + - + 25->26 - - + + 27 - -namespace openshift-authentication-operator (260 of 862) -customresourcedefinition authentications.operator.openshift.io (261 of 862) -authentication cluster (262 of 862) -service openshift-authentication-operator/metrics (263 of 862) -configmap openshift-authentication-operator/authentication-operator-config (264 of 862) -configmap openshift-authentication-operator/service-ca-bundle (265 of 862) -configmap openshift-authentication-operator/trusted-ca-bundle (266 of 862) -clusterrolebinding system:openshift:operator:authentication (267 of 862) -serviceaccount openshift-authentication-operator/authentication-operator (268 of 862) -deployment openshift-authentication-operator/authentication-operator (269 of 862) -clusteroperator authentication (270 of 862) -flowschema openshift-oauth-apiserver-sar (271 of 862) -flowschema openshift-oauth-apiserver (272 of 862) -flowschema openshift-authentication-operator (273 of 862) -flowschema openshift-oauth-server (274 of 862) - - - -25->27 - - + +40-kube-storage-version-migrator, 1 manifests +customresourcedefinition kubestorageversionmigrators.operator.openshift.io (252 of 930) + + + +26->27 + + 28 - -customresourcedefinition clusterautoscalers.autoscaling.openshift.io (275 of 862) -customresourcedefinition machineautoscalers.autoscaling.openshift.io (276 of 862) -clusterrole cluster-autoscaler-operator (277 of 862) -role openshift-machine-api/cluster-autoscaler-operator (278 of 862) -rolebinding openshift-machine-api/cluster-autoscaler-operator (279 of 862) -clusterrolebinding cluster-autoscaler-operator (280 of 862) -serviceaccount openshift-machine-api/cluster-autoscaler-operator (281 of 862) -serviceaccount openshift-machine-api/cluster-autoscaler (282 of 862) -clusterrole cluster-autoscaler (283 of 862) -role openshift-machine-api/cluster-autoscaler (284 of 862) -clusterrolebinding cluster-autoscaler (285 of 862) -rolebinding openshift-machine-api/cluster-autoscaler (286 of 862) -rolebinding openshift-machine-api/prometheus-k8s-cluster-autoscaler-operator (287 of 862) -role openshift-machine-api/prometheus-k8s-cluster-autoscaler-operator (288 of 862) -service openshift-machine-api/cluster-autoscaler-operator (289 of 862) -configmap openshift-machine-api/kube-rbac-proxy-cluster-autoscaler-operator (290 of 862) -servicemonitor openshift-machine-api/cluster-autoscaler-operator (291 of 862) -deployment openshift-machine-api/cluster-autoscaler-operator (292 of 862) -clusteroperator cluster-autoscaler (293 of 862) -clusterrole cluster-autoscaler-operator:cluster-reader (294 of 862) -configmap openshift-machine-api/cluster-autoscaler-operator-ca (295 of 862) -prometheusrule openshift-machine-api/cluster-autoscaler-operator-rules (296 of 862) - - - -25->28 - - + +49-cluster-storage-operator, 1 manifests +namespace openshift-cluster-storage-operator (253 of 930) + + + +27->28 + + 29 - -customresourcedefinition csisnapshotcontrollers.operator.openshift.io (297 of 862) -csisnapshotcontroller cluster (298 of 862) -configmap openshift-cluster-storage-operator/csi-snapshot-controller-operator-config (299 of 862) -service openshift-cluster-storage-operator/csi-snapshot-controller-operator-metrics (300 of 862) -serviceaccount openshift-cluster-storage-operator/csi-snapshot-controller-operator (301 of 862) -clusterrole openshift-csi-snapshot-controller-runner (302 of 862) -clusterrolebinding openshift-csi-snapshot-controller-role (303 of 862) -role openshift-cluster-storage-operator/csi-snapshot-controller-leaderelection (304 of 862) -rolebinding openshift-cluster-storage-operator/csi-snapshot-controller-leaderelection (305 of 862) -rolebinding kube-system/csi-snapshot-controller-operator-authentication-reader (306 of 862) -clusterrole csi-snapshot-controller-operator-clusterrole (307 of 862) -role openshift-cluster-storage-operator/csi-snapshot-controller-operator-role (308 of 862) -clusterrole system:openshift:aggregate-snapshots-to-admin (309 of 862) -clusterrole system:openshift:aggregate-snapshots-to-view (310 of 862) -clusterrole system:openshift:aggregate-snapshots-to-basic-user (311 of 862) -clusterrole system:openshift:aggregate-snapshots-to-storage-admin (312 of 862) -clusterrolebinding csi-snapshot-controller-operator-clusterrole (313 of 862) -clusterrolebinding csi-snapshot-controller-runner-operator (314 of 862) -rolebinding openshift-cluster-storage-operator/csi-snapshot-controller-operator-role (315 of 862) -deployment openshift-cluster-storage-operator/csi-snapshot-controller-operator (316 of 862) -clusteroperator csi-snapshot-controller (317 of 862) - - - -25->29 - - + +50-authentication, 1 manifests +customresourcedefinition authentications.operator.openshift.io (254 of 930) + + + +28->29 + + 30 - -customresourcedefinition configs.imageregistry.operator.openshift.io (318 of 862) -namespace openshift-image-registry (319 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-alibaba (320 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-azure (321 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-gcs (322 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-ibmcos (323 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-openstack (324 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-ibmcos-powervs (325 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-image-registry (326 of 862) -customresourcedefinition imagepruners.imageregistry.operator.openshift.io (327 of 862) -clusterrole cluster-image-registry-operator (328 of 862) -role openshift-image-registry/cluster-image-registry-operator (329 of 862) -clusterrolebinding default-account-cluster-image-registry-operator (330 of 862) -rolebinding openshift-image-registry/cluster-image-registry-operator (331 of 862) -serviceaccount openshift-image-registry/cluster-image-registry-operator (332 of 862) -configmap openshift-image-registry/trusted-ca (333 of 862) -role openshift-image-registry/node-ca (334 of 862) -rolebinding openshift-image-registry/node-ca (335 of 862) -serviceaccount openshift-image-registry/node-ca (336 of 862) -service openshift-image-registry/image-registry-operator (337 of 862) -deployment openshift-image-registry/cluster-image-registry-operator (338 of 862) -clusteroperator image-registry (339 of 862) -prometheusrule openshift-image-registry/imagestreams-rules (340 of 862) -prometheusrule openshift-image-registry/image-registry-rules (341 of 862) -prometheusrule openshift-image-registry/image-registry-operator-alerts (342 of 862) - - - -25->30 - - + +50-cloud-credential-operator, 24 manifests +clusterrole system:openshift:cloud-credential-operator:cluster-reader (255 of 930) +customresourcedefinition cloudcredentials.operator.openshift.io (256 of 930) +clusterrolebinding cloud-credential-operator-rolebinding (257 of 930) +clusterrole cloud-credential-operator-role (258 of 930) +rolebinding openshift-config-managed/cloud-credential-operator (259 of 930) +role openshift-config-managed/cloud-credential-operator-role (260 of 930) +rolebinding openshift-config/cloud-credential-operator (261 of 930) +role openshift-config/cloud-credential-operator-role (262 of 930) +cloudcredential cluster (263 of 930) +rolebinding openshift-cloud-credential-operator/cloud-credential-operator (264 of 930) +role openshift-cloud-credential-operator/cloud-credential-operator-role (265 of 930) +service openshift-cloud-credential-operator/controller-manager-service (266 of 930) +service openshift-cloud-credential-operator/cco-metrics (267 of 930) +configmap openshift-cloud-credential-operator/cco-trusted-ca (268 of 930) +networkpolicy openshift-cloud-credential-operator/allow-egress (269 of 930) +networkpolicy openshift-cloud-credential-operator/allow-ingress-metrics (270 of 930) +networkpolicy openshift-cloud-credential-operator/allow-ingress-pprof (271 of 930) +networkpolicy openshift-cloud-credential-operator/allow-ingress-webhook (272 of 930) +networkpolicy openshift-cloud-credential-operator/default-deny (273 of 930) +serviceaccount openshift-cloud-credential-operator/cloud-credential-operator (274 of 930) +deployment openshift-cloud-credential-operator/cloud-credential-operator (275 of 930) +clusteroperator cloud-credential (276 of 930) +credentialsrequest openshift-cloud-credential-operator/cloud-credential-operator-gcp-ro-creds (277 of 930) +credentialsrequest openshift-cloud-credential-operator/cloud-credential-operator-iam-ro (278 of 930) + + + +28->30 + + 31 - -clusterrole openshift-ingress-operator (343 of 862) -customresourcedefinition dnsrecords.ingress.operator.openshift.io (344 of 862) -customresourcedefinition ingresscontrollers.operator.openshift.io (345 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-ingress (346 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-ingress-azure (347 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-ingress-gcp (348 of 862) -namespace openshift-ingress-operator (349 of 862) -clusterrolebinding openshift-ingress-operator (350 of 862) -rolebinding openshift-ingress-operator/ingress-operator (351 of 862) -rolebinding openshift-config/ingress-operator (352 of 862) -role openshift-ingress-operator/ingress-operator (353 of 862) -role openshift-config/ingress-operator (354 of 862) -serviceaccount openshift-ingress-operator/ingress-operator (355 of 862) -service openshift-ingress-operator/metrics (356 of 862) -configmap openshift-ingress-operator/trusted-ca (357 of 862) -deployment openshift-ingress-operator/ingress-operator (358 of 862) -clusteroperator ingress (359 of 862) - - - -25->31 - - + +50-cluster-authentication-operator, 14 manifests +namespace openshift-authentication-operator (279 of 930) +authentication cluster (280 of 930) +service openshift-authentication-operator/metrics (281 of 930) +configmap openshift-authentication-operator/authentication-operator-config (282 of 930) +configmap openshift-authentication-operator/service-ca-bundle (283 of 930) +configmap openshift-authentication-operator/trusted-ca-bundle (284 of 930) +clusterrolebinding system:openshift:operator:authentication (285 of 930) +serviceaccount openshift-authentication-operator/authentication-operator (286 of 930) +deployment openshift-authentication-operator/authentication-operator (287 of 930) +clusteroperator authentication (288 of 930) +flowschema openshift-oauth-apiserver-sar (289 of 930) +flowschema openshift-oauth-apiserver (290 of 930) +flowschema openshift-authentication-operator (291 of 930) +flowschema openshift-oauth-server (292 of 930) + + + +28->31 + + 32 - -customresourcedefinition storageversionmigrations.migration.k8s.io (360 of 862) -customresourcedefinition storagestates.migration.k8s.io (361 of 862) -namespace openshift-kube-storage-version-migrator-operator (362 of 862) -configmap openshift-kube-storage-version-migrator-operator/config (363 of 862) -serviceaccount openshift-kube-storage-version-migrator-operator/kube-storage-version-migrator-operator (364 of 862) -clusterrolebinding system:openshift:operator:kube-storage-version-migrator-operator (365 of 862) -kubestorageversionmigrator cluster (366 of 862) -deployment openshift-kube-storage-version-migrator-operator/kube-storage-version-migrator-operator (367 of 862) -service openshift-kube-storage-version-migrator-operator/metrics (368 of 862) -clusteroperator kube-storage-version-migrator (369 of 862) - - - -25->32 - - + +50-cluster-autoscaler-operator, 20 manifests +customresourcedefinition clusterautoscalers.autoscaling.openshift.io (293 of 930) +customresourcedefinition machineautoscalers.autoscaling.openshift.io (294 of 930) +clusterrole cluster-autoscaler-operator (295 of 930) +role openshift-machine-api/cluster-autoscaler-operator (296 of 930) +rolebinding openshift-machine-api/cluster-autoscaler-operator (297 of 930) +clusterrolebinding cluster-autoscaler-operator (298 of 930) +serviceaccount openshift-machine-api/cluster-autoscaler-operator (299 of 930) +serviceaccount openshift-machine-api/cluster-autoscaler (300 of 930) +clusterrole cluster-autoscaler (301 of 930) +role openshift-machine-api/cluster-autoscaler (302 of 930) +clusterrolebinding cluster-autoscaler (303 of 930) +rolebinding openshift-machine-api/cluster-autoscaler (304 of 930) +rolebinding openshift-machine-api/prometheus-k8s-cluster-autoscaler-operator (305 of 930) +role openshift-machine-api/prometheus-k8s-cluster-autoscaler-operator (306 of 930) +service openshift-machine-api/cluster-autoscaler-operator (307 of 930) +configmap openshift-machine-api/kube-rbac-proxy-cluster-autoscaler-operator (308 of 930) +servicemonitor openshift-machine-api/cluster-autoscaler-operator (309 of 930) +deployment openshift-machine-api/cluster-autoscaler-operator (310 of 930) +clusteroperator cluster-autoscaler (311 of 930) +clusterrole cluster-autoscaler-operator:cluster-reader (312 of 930) + + + +28->32 + + 33 - -namespace openshift-cluster-machine-approver (370 of 862) -serviceaccount openshift-cluster-machine-approver/machine-approver-sa (371 of 862) -role openshift-cluster-machine-approver/machine-approver (372 of 862) -rolebinding openshift-cluster-machine-approver/machine-approver (373 of 862) -role openshift-config-managed/machine-approver (374 of 862) -rolebinding openshift-config-managed/machine-approver (375 of 862) -clusterrole system:openshift:controller:machine-approver (376 of 862) -clusterrolebinding system:openshift:controller:machine-approver (377 of 862) -configmap openshift-cluster-machine-approver/kube-rbac-proxy (378 of 862) -service openshift-cluster-machine-approver/machine-approver (379 of 862) -deployment openshift-cluster-machine-approver/machine-approver (380 of 862) -clusteroperator machine-approver (381 of 862) - - - -25->33 - - + +50-cluster-csi-snapshot-controller-operator, 21 manifests +customresourcedefinition csisnapshotcontrollers.operator.openshift.io (313 of 930) +csisnapshotcontroller cluster (314 of 930) +configmap openshift-cluster-storage-operator/csi-snapshot-controller-operator-config (315 of 930) +service openshift-cluster-storage-operator/csi-snapshot-controller-operator-metrics (316 of 930) +serviceaccount openshift-cluster-storage-operator/csi-snapshot-controller-operator (317 of 930) +clusterrole openshift-csi-snapshot-controller-runner (318 of 930) +clusterrolebinding openshift-csi-snapshot-controller-role (319 of 930) +role openshift-cluster-storage-operator/csi-snapshot-controller-leaderelection (320 of 930) +rolebinding openshift-cluster-storage-operator/csi-snapshot-controller-leaderelection (321 of 930) +rolebinding kube-system/csi-snapshot-controller-operator-authentication-reader (322 of 930) +clusterrole csi-snapshot-controller-operator-clusterrole (323 of 930) +role openshift-cluster-storage-operator/csi-snapshot-controller-operator-role (324 of 930) +clusterrole system:openshift:aggregate-snapshots-to-admin (325 of 930) +clusterrole system:openshift:aggregate-snapshots-to-view (326 of 930) +clusterrole system:openshift:aggregate-snapshots-to-basic-user (327 of 930) +clusterrole system:openshift:aggregate-snapshots-to-storage-admin (328 of 930) +clusterrolebinding csi-snapshot-controller-operator-clusterrole (329 of 930) +clusterrolebinding csi-snapshot-controller-runner-operator (330 of 930) +rolebinding openshift-cluster-storage-operator/csi-snapshot-controller-operator-role (331 of 930) +deployment openshift-cluster-storage-operator/csi-snapshot-controller-operator (332 of 930) +clusteroperator csi-snapshot-controller (333 of 930) + + + +28->33 + + 34 - -customresourcedefinition alertingrules.monitoring.openshift.io (382 of 862) -customresourcedefinition alertmanagerconfigs.monitoring.coreos.com (383 of 862) -customresourcedefinition alertmanagers.monitoring.coreos.com (384 of 862) -customresourcedefinition alertrelabelconfigs.monitoring.openshift.io (385 of 862) -customresourcedefinition podmonitors.monitoring.coreos.com (386 of 862) -customresourcedefinition probes.monitoring.coreos.com (387 of 862) -customresourcedefinition prometheuses.monitoring.coreos.com (388 of 862) -customresourcedefinition prometheusrules.monitoring.coreos.com (389 of 862) -customresourcedefinition servicemonitors.monitoring.coreos.com (390 of 862) -customresourcedefinition thanosrulers.monitoring.coreos.com (391 of 862) -namespace openshift-monitoring (392 of 862) -namespace openshift-user-workload-monitoring (393 of 862) -role openshift-monitoring/cluster-monitoring-operator-alert-customization (394 of 862) -clusterrole cluster-monitoring-operator-namespaced (395 of 862) -clusterrole cluster-monitoring-operator (396 of 862) -serviceaccount openshift-monitoring/cluster-monitoring-operator (397 of 862) -clusterrolebinding cluster-monitoring-operator (398 of 862) -rolebinding openshift-monitoring/cluster-monitoring-operator (399 of 862) -rolebinding openshift-user-workload-monitoring/cluster-monitoring-operator (400 of 862) -rolebinding openshift-monitoring/cluster-monitoring-operator-alert-customization (401 of 862) -service openshift-monitoring/cluster-monitoring-operator (402 of 862) -configmap openshift-monitoring/telemetry-config (403 of 862) -deployment openshift-monitoring/cluster-monitoring-operator (404 of 862) -clusteroperator monitoring (405 of 862) - - - -25->34 - - + +50-cluster-image-registry-operator, 24 manifests +customresourcedefinition configs.imageregistry.operator.openshift.io (334 of 930) +namespace openshift-image-registry (335 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-azure (336 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-gcs (337 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-ibmcos (338 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-openstack (339 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-ibmcos-powervs (340 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-image-registry (341 of 930) +customresourcedefinition imagepruners.imageregistry.operator.openshift.io (342 of 930) +clusterrole cluster-image-registry-operator (343 of 930) +role openshift-image-registry/cluster-image-registry-operator (344 of 930) +clusterrolebinding default-account-cluster-image-registry-operator (345 of 930) +rolebinding openshift-image-registry/cluster-image-registry-operator (346 of 930) +serviceaccount openshift-image-registry/cluster-image-registry-operator (347 of 930) +configmap openshift-image-registry/trusted-ca (348 of 930) +role openshift-image-registry/node-ca (349 of 930) +rolebinding openshift-image-registry/node-ca (350 of 930) +serviceaccount openshift-image-registry/node-ca (351 of 930) +service openshift-image-registry/image-registry-operator (352 of 930) +deployment openshift-image-registry/cluster-image-registry-operator (353 of 930) +clusteroperator image-registry (354 of 930) +prometheusrule openshift-image-registry/imagestreams-rules (355 of 930) +prometheusrule openshift-image-registry/image-registry-rules (356 of 930) +prometheusrule openshift-image-registry/image-registry-operator-alerts (357 of 930) + + + +28->34 + + 35 - -namespace openshift-cloud-network-config-controller (406 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-gcp (407 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-aws (408 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-azure (409 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-openstack (410 of 862) -service openshift-network-operator/metrics (411 of 862) -role openshift-network-operator/prometheus-k8s (412 of 862) -rolebinding openshift-network-operator/prometheus-k8s (413 of 862) -servicemonitor openshift-network-operator/network-operator (414 of 862) - - - -25->35 - - + +50-cluster-ingress-operator, 19 manifests +clusterrole openshift-ingress-operator (358 of 930) +customresourcedefinition dnsrecords.ingress.operator.openshift.io (359 of 930) +customresourcedefinition ingresscontrollers.operator.openshift.io (360 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-ingress (361 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-ingress-azure (362 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-ingress-gcp (363 of 930) +namespace openshift-ingress-operator (364 of 930) +clusterrolebinding openshift-ingress-operator (365 of 930) +rolebinding openshift-ingress-operator/ingress-operator (366 of 930) +rolebinding openshift-config/ingress-operator (367 of 930) +role openshift-ingress-operator/ingress-operator (368 of 930) +role openshift-config/ingress-operator (369 of 930) +serviceaccount openshift-ingress-operator/ingress-operator (370 of 930) +service openshift-ingress-operator/metrics (371 of 930) +configmap openshift-ingress-operator/trusted-ca (372 of 930) +validatingadmissionpolicybinding openshift-ingress-operator-gatewayapi-crd-admission (373 of 930) +validatingadmissionpolicy openshift-ingress-operator-gatewayapi-crd-admission (374 of 930) +deployment openshift-ingress-operator/ingress-operator (375 of 930) +clusteroperator ingress (376 of 930) + + + +28->35 + + 36 - -namespace openshift-cluster-node-tuning-operator (415 of 862) -customresourcedefinition performanceprofiles.performance.openshift.io (416 of 862) -customresourcedefinition profiles.tuned.openshift.io (417 of 862) -customresourcedefinition tuneds.tuned.openshift.io (418 of 862) -configmap openshift-cluster-node-tuning-operator/trusted-ca (419 of 862) -service openshift-cluster-node-tuning-operator/node-tuning-operator (420 of 862) -role openshift-cluster-node-tuning-operator/prometheus-k8s (421 of 862) -rolebinding openshift-cluster-node-tuning-operator/prometheus-k8s (422 of 862) -servicemonitor openshift-cluster-node-tuning-operator/node-tuning-operator (423 of 862) -prometheusrule openshift-cluster-node-tuning-operator/node-tuning-operator (424 of 862) -serviceaccount openshift-cluster-node-tuning-operator/cluster-node-tuning-operator (425 of 862) -clusterrole cluster-node-tuning-operator (426 of 862) -clusterrolebinding cluster-node-tuning-operator (427 of 862) -serviceaccount openshift-cluster-node-tuning-operator/tuned (428 of 862) -clusterrole cluster-node-tuning:tuned (429 of 862) -clusterrolebinding cluster-node-tuning:tuned (430 of 862) -service openshift-cluster-node-tuning-operator/performance-addon-operator-service (431 of 862) -validatingwebhookconfiguration performance-addon-operator (432 of 862) -deployment openshift-cluster-node-tuning-operator/cluster-node-tuning-operator (433 of 862) -clusteroperator node-tuning (434 of 862) - - - -25->36 - - + +50-cluster-kube-storage-version-migrator-operator, 10 manifests +customresourcedefinition storageversionmigrations.migration.k8s.io (377 of 930) +customresourcedefinition storagestates.migration.k8s.io (378 of 930) +namespace openshift-kube-storage-version-migrator-operator (379 of 930) +configmap openshift-kube-storage-version-migrator-operator/config (380 of 930) +serviceaccount openshift-kube-storage-version-migrator-operator/kube-storage-version-migrator-operator (381 of 930) +clusterrolebinding system:openshift:operator:kube-storage-version-migrator-operator (382 of 930) +kubestorageversionmigrator cluster (383 of 930) +deployment openshift-kube-storage-version-migrator-operator/kube-storage-version-migrator-operator (384 of 930) +service openshift-kube-storage-version-migrator-operator/metrics (385 of 930) +clusteroperator kube-storage-version-migrator (386 of 930) + + + +28->36 + + 37 - -namespace openshift-apiserver-operator (435 of 862) -openshiftapiserver cluster (436 of 862) -configmap openshift-apiserver-operator/openshift-apiserver-operator-config (437 of 862) -configmap openshift-apiserver-operator/trusted-ca-bundle (438 of 862) -clusterrolebinding system:openshift:operator:openshift-apiserver-operator (439 of 862) -serviceaccount openshift-apiserver-operator/openshift-apiserver-operator (440 of 862) -service openshift-apiserver-operator/metrics (441 of 862) -deployment openshift-apiserver-operator/openshift-apiserver-operator (442 of 862) -clusteroperator openshift-apiserver (443 of 862) -flowschema openshift-apiserver-sar (444 of 862) -flowschema openshift-apiserver (445 of 862) -flowschema openshift-apiserver-operator (446 of 862) - - - -25->37 - - + +50-cluster-machine-approver, 12 manifests +namespace openshift-cluster-machine-approver (387 of 930) +serviceaccount openshift-cluster-machine-approver/machine-approver-sa (388 of 930) +role openshift-cluster-machine-approver/machine-approver (389 of 930) +rolebinding openshift-cluster-machine-approver/machine-approver (390 of 930) +role openshift-config-managed/machine-approver (391 of 930) +rolebinding openshift-config-managed/machine-approver (392 of 930) +clusterrole system:openshift:controller:machine-approver (393 of 930) +clusterrolebinding system:openshift:controller:machine-approver (394 of 930) +configmap openshift-cluster-machine-approver/kube-rbac-proxy (395 of 930) +service openshift-cluster-machine-approver/machine-approver (396 of 930) +deployment openshift-cluster-machine-approver/machine-approver (397 of 930) +clusteroperator machine-approver (398 of 930) + + + +28->37 + + 38 - -namespace openshift-controller-manager-operator (447 of 862) -customresourcedefinition openshiftcontrollermanagers.operator.openshift.io (448 of 862) -openshiftcontrollermanager cluster (449 of 862) -configmap openshift-controller-manager-operator/openshift-controller-manager-operator-config (450 of 862) -service openshift-controller-manager-operator/metrics (451 of 862) -configmap openshift-controller-manager-operator/openshift-controller-manager-images (452 of 862) -clusterrolebinding system:openshift:operator:openshift-controller-manager-operator (453 of 862) -serviceaccount openshift-controller-manager-operator/openshift-controller-manager-operator (454 of 862) -deployment openshift-controller-manager-operator/openshift-controller-manager-operator (455 of 862) -flowschema openshift-controller-manager (456 of 862) -clusteroperator openshift-controller-manager (457 of 862) - - - -25->38 - - + +50-cluster-monitoring-operator, 25 manifests +customresourcedefinition alertingrules.monitoring.openshift.io (399 of 930) +customresourcedefinition alertmanagerconfigs.monitoring.coreos.com (400 of 930) +customresourcedefinition alertmanagers.monitoring.coreos.com (401 of 930) +customresourcedefinition alertrelabelconfigs.monitoring.openshift.io (402 of 930) +customresourcedefinition podmonitors.monitoring.coreos.com (403 of 930) +customresourcedefinition probes.monitoring.coreos.com (404 of 930) +customresourcedefinition prometheuses.monitoring.coreos.com (405 of 930) +customresourcedefinition prometheusrules.monitoring.coreos.com (406 of 930) +customresourcedefinition servicemonitors.monitoring.coreos.com (407 of 930) +customresourcedefinition thanosrulers.monitoring.coreos.com (408 of 930) +namespace openshift-monitoring (409 of 930) +namespace openshift-user-workload-monitoring (410 of 930) +role openshift-monitoring/cluster-monitoring-operator-alert-customization (411 of 930) +clusterrole cluster-monitoring-operator-namespaced (412 of 930) +clusterrole cluster-monitoring-operator (413 of 930) +serviceaccount openshift-monitoring/cluster-monitoring-operator (414 of 930) +clusterrolebinding cluster-monitoring-operator (415 of 930) +rolebinding openshift-monitoring/cluster-monitoring-operator (416 of 930) +rolebinding openshift-user-workload-monitoring/cluster-monitoring-operator (417 of 930) +rolebinding openshift-monitoring/cluster-monitoring-operator-alert-customization (418 of 930) +service openshift-monitoring/cluster-monitoring-operator (419 of 930) +configmap openshift-monitoring/telemetry-config (420 of 930) +deployment openshift-monitoring/cluster-monitoring-operator (421 of 930) +clusteroperator monitoring (422 of 930) +validatingwebhookconfiguration monitoringconfigmaps.openshift.io (423 of 930) + + + +28->38 + + 39 - -customresourcedefinition configs.samples.operator.openshift.io (458 of 862) -namespace openshift-cluster-samples-operator (459 of 862) -prometheusrule openshift-cluster-samples-operator/samples-operator-alerts (460 of 862) -serviceaccount openshift-cluster-samples-operator/cluster-samples-operator (461 of 862) -clusterrolebinding cluster-samples-operator-imageconfig-reader (462 of 862) -clusterrole cluster-samples-operator-imageconfig-reader (463 of 862) -clusterrolebinding cluster-samples-operator-proxy-reader (464 of 862) -clusterrole cluster-samples-operator-proxy-reader (465 of 862) -role openshift-cluster-samples-operator/cluster-samples-operator (466 of 862) -clusterrole cluster-samples-operator (467 of 862) -clusterrole system:openshift:cluster-samples-operator:cluster-reader (468 of 862) -rolebinding openshift-cluster-samples-operator/cluster-samples-operator (469 of 862) -clusterrolebinding cluster-samples-operator (470 of 862) -rolebinding openshift/cluster-samples-operator-openshift-edit (471 of 862) -role openshift-config/coreos-pull-secret-reader (472 of 862) -rolebinding openshift-config/cluster-samples-operator-openshift-config-secret-reader (473 of 862) -service openshift-cluster-samples-operator/metrics (474 of 862) -deployment openshift-cluster-samples-operator/cluster-samples-operator (475 of 862) -servicemonitor openshift-cluster-samples-operator/cluster-samples-operator (476 of 862) -clusteroperator openshift-samples (477 of 862) -imagestream openshift/cli (478 of 862) -imagestream openshift/cli-artifacts (479 of 862) -imagestream openshift/installer (480 of 862) -imagestream openshift/installer-artifacts (481 of 862) -imagestream openshift/tests (482 of 862) -imagestream openshift/tools (483 of 862) -imagestream openshift/must-gather (484 of 862) -imagestream openshift/oauth-proxy (485 of 862) -imagestream openshift/hello-openshift (486 of 862) -imagestream openshift/network-tools (487 of 862) -role openshift-cluster-samples-operator/prometheus-k8s (488 of 862) -rolebinding openshift-cluster-samples-operator/prometheus-k8s (489 of 862) - - - -25->39 - - + +50-cluster-network-operator, 9 manifests +namespace openshift-cloud-network-config-controller (424 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-gcp (425 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-aws (426 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-azure (427 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-openstack (428 of 930) +service openshift-network-operator/metrics (429 of 930) +role openshift-network-operator/prometheus-k8s (430 of 930) +rolebinding openshift-network-operator/prometheus-k8s (431 of 930) +servicemonitor openshift-network-operator/network-operator (432 of 930) + + + +28->39 + + 40 - -namespace openshift-cluster-csi-drivers (490 of 862) -credentialsrequest openshift-cloud-credential-operator/alibaba-disk-csi-driver-operator (491 of 862) -credentialsrequest openshift-cloud-credential-operator/aws-ebs-csi-driver-operator (492 of 862) -credentialsrequest openshift-cloud-credential-operator/azure-disk-csi-driver-operator (493 of 862) -credentialsrequest openshift-cloud-credential-operator/azure-file-csi-driver-operator (494 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-cluster-csi-drivers (495 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-gcp-pd-csi-driver-operator (496 of 862) -credentialsrequest openshift-cloud-credential-operator/ibm-vpc-block-csi-driver-operator (497 of 862) -credentialsrequest openshift-cloud-credential-operator/manila-csi-driver-operator (498 of 862) -credentialsrequest openshift-cloud-credential-operator/ovirt-csi-driver-operator (499 of 862) -credentialsrequest openshift-cloud-credential-operator/ibm-powervs-block-csi-driver-operator (500 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-vmware-vsphere-csi-driver-operator (501 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-vsphere-problem-detector (502 of 862) -customresourcedefinition clustercsidrivers.operator.openshift.io (503 of 862) -customresourcedefinition storages.operator.openshift.io (504 of 862) -storage cluster (505 of 862) -serviceaccount openshift-cluster-storage-operator/cluster-storage-operator (506 of 862) -clusterrolebinding cluster-storage-operator-role (507 of 862) -service openshift-cluster-storage-operator/cluster-storage-operator-metrics (508 of 862) -clusterrole openshift-csi-provisioner-configmap-and-secret-reader-role (509 of 862) -clusterrole openshift-csi-provisioner-volumeattachment-reader-role (510 of 862) -clusterrole openshift-csi-provisioner-volumesnapshot-reader-role (511 of 862) -clusterrole openshift-csi-resizer-infrastructure-reader-role (512 of 862) -clusterrole openshift-csi-resizer-storageclass-reader-role (513 of 862) -clusterrole openshift-csi-main-attacher-role (514 of 862) -clusterrole openshift-csi-main-provisioner-role (515 of 862) -clusterrole openshift-csi-main-resizer-role (516 of 862) -clusterrole openshift-csi-main-snapshotter-role (517 of 862) -deployment openshift-cluster-storage-operator/cluster-storage-operator (518 of 862) -clusteroperator storage (519 of 862) -prometheusrule openshift-cluster-storage-operator/prometheus (520 of 862) - - - -25->40 - - + +50-cluster-node-tuning-operator, 20 manifests +namespace openshift-cluster-node-tuning-operator (433 of 930) +customresourcedefinition performanceprofiles.performance.openshift.io (434 of 930) +customresourcedefinition profiles.tuned.openshift.io (435 of 930) +customresourcedefinition tuneds.tuned.openshift.io (436 of 930) +configmap openshift-cluster-node-tuning-operator/trusted-ca (437 of 930) +service openshift-cluster-node-tuning-operator/node-tuning-operator (438 of 930) +role openshift-cluster-node-tuning-operator/prometheus-k8s (439 of 930) +rolebinding openshift-cluster-node-tuning-operator/prometheus-k8s (440 of 930) +servicemonitor openshift-cluster-node-tuning-operator/node-tuning-operator (441 of 930) +prometheusrule openshift-cluster-node-tuning-operator/node-tuning-operator (442 of 930) +serviceaccount openshift-cluster-node-tuning-operator/cluster-node-tuning-operator (443 of 930) +clusterrole cluster-node-tuning-operator (444 of 930) +clusterrolebinding cluster-node-tuning-operator (445 of 930) +serviceaccount openshift-cluster-node-tuning-operator/tuned (446 of 930) +clusterrole cluster-node-tuning:tuned (447 of 930) +clusterrolebinding cluster-node-tuning:tuned (448 of 930) +service openshift-cluster-node-tuning-operator/performance-addon-operator-service (449 of 930) +validatingwebhookconfiguration performance-addon-operator (450 of 930) +deployment openshift-cluster-node-tuning-operator/cluster-node-tuning-operator (451 of 930) +clusteroperator node-tuning (452 of 930) + + + +28->40 + + 41 - -priorityclass openshift-user-critical (521 of 862) - - - -25->41 - - + +50-cluster-openshift-apiserver-operator, 12 manifests +namespace openshift-apiserver-operator (453 of 930) +openshiftapiserver cluster (454 of 930) +configmap openshift-apiserver-operator/openshift-apiserver-operator-config (455 of 930) +configmap openshift-apiserver-operator/trusted-ca-bundle (456 of 930) +clusterrolebinding system:openshift:operator:openshift-apiserver-operator (457 of 930) +serviceaccount openshift-apiserver-operator/openshift-apiserver-operator (458 of 930) +service openshift-apiserver-operator/metrics (459 of 930) +deployment openshift-apiserver-operator/openshift-apiserver-operator (460 of 930) +clusteroperator openshift-apiserver (461 of 930) +flowschema openshift-apiserver-sar (462 of 930) +flowschema openshift-apiserver (463 of 930) +flowschema openshift-apiserver-operator (464 of 930) + + + +28->41 + + 42 - -customresourcedefinition consoles.operator.openshift.io (522 of 862) -customresourcedefinition consoleclidownloads.console.openshift.io (523 of 862) -customresourcedefinition consoleexternalloglinks.console.openshift.io (524 of 862) -customresourcedefinition consolelinks.console.openshift.io (525 of 862) -customresourcedefinition consolenotifications.console.openshift.io (526 of 862) -customresourcedefinition consolequickstarts.console.openshift.io (527 of 862) -customresourcedefinition consolesamples.console.openshift.io (528 of 862) -customresourcedefinition consoleyamlsamples.console.openshift.io (529 of 862) -customresourcedefinition helmchartrepositories.helm.openshift.io (530 of 862) -customresourcedefinition projecthelmchartrepositories.helm.openshift.io (531 of 862) -helmchartrepository openshift-helm-charts (532 of 862) -oauthclient console (533 of 862) -console cluster (534 of 862) -namespace openshift-console (535 of 862) -namespace openshift-console-operator (536 of 862) -namespace openshift-console-user-settings (537 of 862) -clusterrole console-extensions-reader (538 of 862) -clusterrole console-operator (539 of 862) -clusterrole console (540 of 862) -clusterrole helm-chartrepos-viewer (541 of 862) -clusterrole project-helm-chartrepository-editor (542 of 862) -role openshift-console/console-operator (543 of 862) -role openshift-config-managed/console-operator (544 of 862) -role openshift-config-managed/console-public (545 of 862) -role openshift-config-managed/console-configmap-reader (546 of 862) -role openshift-config/console-operator (547 of 862) -role openshift-console-user-settings/console-user-settings-admin (548 of 862) -rolebinding openshift-console-user-settings/console-user-settings-admin (549 of 862) -role openshift-console-operator/console-operator (550 of 862) -clusterrolebinding console-operator (551 of 862) -clusterrolebinding console-extensions-reader (552 of 862) -clusterrolebinding console-operator-auth-delegator (553 of 862) -clusterrolebinding console (554 of 862) -clusterrolebinding helm-chartrepos-view (555 of 862) -clusterrolebinding console-auth-delegator (556 of 862) -rolebinding openshift-console/console-operator (557 of 862) -rolebinding openshift-console-operator/console-operator (558 of 862) -rolebinding openshift-config-managed/console-operator (559 of 862) -rolebinding openshift-config-managed/console-public (560 of 862) -rolebinding openshift-config/console-operator (561 of 862) -rolebinding kube-system/console-operator (562 of 862) -rolebinding openshift-config-managed/console-configmap-reader (563 of 862) -rolebinding kube-system/console (564 of 862) -configmap openshift-console-operator/console-operator-config (565 of 862) -service openshift-console-operator/metrics (566 of 862) -service openshift-console-operator/webhook (567 of 862) -serviceaccount openshift-console-operator/console-operator (568 of 862) -serviceaccount openshift-console/console (569 of 862) -consoleclidownload helm-download-links (570 of 862) -deployment openshift-console-operator/console-operator (571 of 862) -customresourcedefinition consoleplugins.console.openshift.io (572 of 862) -clusteroperator console (573 of 862) -consolequickstart add-healthchecks (574 of 862) -prometheusrule openshift-console-operator/cluster-monitoring-prometheus-rules (575 of 862) -consolequickstart install-cryostat (576 of 862) -consolequickstart explore-pipelines (577 of 862) -consolequickstart host-inventory (578 of 862) -consolequickstart install-helmchartrepo-ns (579 of 862) -consolequickstart install-multicluster-engine (580 of 862) -consolequickstart odf-install-tour (581 of 862) -consolequickstart install-serverless (582 of 862) -consolequickstart janus-idp-installation-via-helm (583 of 862) -consolequickstart janus-idp-installation-via-operator (584 of 862) -consolequickstart jboss-eap7-with-helm (585 of 862) -consolequickstart manage-helm-repos (586 of 862) -consolequickstart monitor-sampleapp (587 of 862) -consolequickstart node-with-s2i (588 of 862) -consolequickstart ocs-install-tour (589 of 862) -consolequickstart quarkus-with-helm (590 of 862) -consolequickstart quarkus-with-s2i (591 of 862) -consolequickstart rhdh-installation-via-helm (592 of 862) -consolequickstart rhdh-installation-via-operator (593 of 862) -consolequickstart sample-application (594 of 862) -consolequickstart spring-with-s2i (595 of 862) - - - -25->42 - - + +50-cluster-openshift-controller-manager-operator, 10 manifests +namespace openshift-controller-manager-operator (465 of 930) +openshiftcontrollermanager cluster (466 of 930) +configmap openshift-controller-manager-operator/openshift-controller-manager-operator-config (467 of 930) +service openshift-controller-manager-operator/metrics (468 of 930) +configmap openshift-controller-manager-operator/openshift-controller-manager-images (469 of 930) +clusterrolebinding system:openshift:operator:openshift-controller-manager-operator (470 of 930) +serviceaccount openshift-controller-manager-operator/openshift-controller-manager-operator (471 of 930) +deployment openshift-controller-manager-operator/openshift-controller-manager-operator (472 of 930) +flowschema openshift-controller-manager (473 of 930) +clusteroperator openshift-controller-manager (474 of 930) + + + +28->42 + + 43 - -imagestream openshift/driver-toolkit (596 of 862) - - - -25->43 - - + +50-cluster-samples-operator, 31 manifests +customresourcedefinition configs.samples.operator.openshift.io (475 of 930) +namespace openshift-cluster-samples-operator (476 of 930) +prometheusrule openshift-cluster-samples-operator/samples-operator-alerts (477 of 930) +serviceaccount openshift-cluster-samples-operator/cluster-samples-operator (478 of 930) +clusterrolebinding cluster-samples-operator-imageconfig-reader (479 of 930) +clusterrole cluster-samples-operator-imageconfig-reader (480 of 930) +clusterrolebinding cluster-samples-operator-proxy-reader (481 of 930) +clusterrole cluster-samples-operator-proxy-reader (482 of 930) +role openshift-cluster-samples-operator/cluster-samples-operator (483 of 930) +clusterrole cluster-samples-operator (484 of 930) +clusterrole system:openshift:cluster-samples-operator:cluster-reader (485 of 930) +rolebinding openshift-cluster-samples-operator/cluster-samples-operator (486 of 930) +clusterrolebinding cluster-samples-operator (487 of 930) +rolebinding openshift/cluster-samples-operator-openshift-edit (488 of 930) +role openshift-config/coreos-pull-secret-reader (489 of 930) +rolebinding openshift-config/cluster-samples-operator-openshift-config-secret-reader (490 of 930) +service openshift-cluster-samples-operator/metrics (491 of 930) +deployment openshift-cluster-samples-operator/cluster-samples-operator (492 of 930) +servicemonitor openshift-cluster-samples-operator/cluster-samples-operator (493 of 930) +clusteroperator openshift-samples (494 of 930) +imagestream openshift/cli (495 of 930) +imagestream openshift/cli-artifacts (496 of 930) +imagestream openshift/installer (497 of 930) +imagestream openshift/installer-artifacts (498 of 930) +imagestream openshift/tests (499 of 930) +imagestream openshift/tools (500 of 930) +imagestream openshift/must-gather (501 of 930) +imagestream openshift/oauth-proxy (502 of 930) +imagestream openshift/network-tools (503 of 930) +role openshift-cluster-samples-operator/prometheus-k8s (504 of 930) +rolebinding openshift-cluster-samples-operator/prometheus-k8s (505 of 930) + + + +28->43 + + 44 - -namespace openshift-insights (597 of 862) -clusterrolebinding insights-operator-auth (598 of 862) -rolebinding kube-system/insights-operator-auth (599 of 862) -clusterrole insights-operator (600 of 862) -rolebinding openshift-monitoring/insights-operator-alertmanager (601 of 862) -clusterrolebinding insights-operator (602 of 862) -clusterrole insights-operator-gather (603 of 862) -clusterrolebinding insights-operator-gather (604 of 862) -clusterrolebinding insights-operator-gather-reader (605 of 862) -role openshift-config/insights-operator (606 of 862) -rolebinding openshift-config/insights-operator (607 of 862) -role openshift-insights/insights-operator (608 of 862) -rolebinding openshift-insights/insights-operator (609 of 862) -role openshift-insights/insights-operator-obfuscation-secret (610 of 862) -rolebinding openshift-insights/insights-operator-obfuscation-secret (611 of 862) -role openshift-config-managed/insights-operator-etc-pki-entitlement (612 of 862) -rolebinding openshift-config-managed/insights-operator-etc-pki-entitlement (613 of 862) -customresourcedefinition insightsoperators.operator.openshift.io (614 of 862) -serviceaccount openshift-insights/operator (615 of 862) -serviceaccount openshift-insights/gather (616 of 862) -insightsoperator cluster (617 of 862) -rolebinding openshift-insights/prometheus-k8s (618 of 862) -configmap openshift-insights/trusted-ca-bundle (619 of 862) -configmap openshift-insights/service-ca-bundle (620 of 862) -role openshift-insights/prometheus-k8s (621 of 862) -deployment openshift-insights/insights-operator (622 of 862) -service openshift-insights/metrics (623 of 862) -clusteroperator insights (624 of 862) -servicemonitor openshift-insights/insights-operator (625 of 862) - - - -25->44 - - + +50-cluster-storage-operator, 40 manifests +namespace openshift-cluster-csi-drivers (506 of 930) +credentialsrequest openshift-cloud-credential-operator/aws-ebs-csi-driver-operator (507 of 930) +credentialsrequest openshift-cloud-credential-operator/azure-disk-csi-driver-operator (508 of 930) +credentialsrequest openshift-cloud-credential-operator/azure-file-csi-driver-operator (509 of 930) +credentialsrequest openshift-cloud-credential-operator/openstack-cinder-csi-driver-operator (510 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-gcp-pd-csi-driver-operator (511 of 930) +credentialsrequest openshift-cloud-credential-operator/ibm-vpc-block-csi-driver-operator (512 of 930) +credentialsrequest openshift-cloud-credential-operator/manila-csi-driver-operator (513 of 930) +credentialsrequest openshift-cloud-credential-operator/manila-csi-drivers (514 of 930) +credentialsrequest openshift-cloud-credential-operator/ovirt-csi-driver-operator (515 of 930) +credentialsrequest openshift-cloud-credential-operator/ibm-powervs-block-csi-driver-operator (516 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-vmware-vsphere-csi-driver-operator (517 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-vsphere-problem-detector (518 of 930) +storage cluster (519 of 930) +serviceaccount openshift-cluster-storage-operator/cluster-storage-operator (520 of 930) +clusterrolebinding cluster-storage-operator-role (521 of 930) +service openshift-cluster-storage-operator/cluster-storage-operator-metrics (522 of 930) +networkpolicy openshift-cluster-csi-drivers/allow-all-egress (523 of 930) +networkpolicy openshift-cluster-csi-drivers/allow-egress-to-api-server (524 of 930) +networkpolicy openshift-cluster-csi-drivers/allow-ingress-to-metrics-range (525 of 930) +networkpolicy openshift-cluster-csi-drivers/allow-ingress-to-operator-metrics-range (526 of 930) +networkpolicy openshift-cluster-csi-drivers/allow-to-dns (527 of 930) +networkpolicy openshift-cluster-storage-operator/allow-all-egress (528 of 930) +networkpolicy openshift-cluster-storage-operator/allow-egress-to-api-server (529 of 930) +networkpolicy openshift-cluster-storage-operator/allow-ingress-to-operator-metrics (530 of 930) +networkpolicy openshift-cluster-storage-operator/allow-to-dns (531 of 930) +clusterrole openshift-csi-provisioner-configmap-and-secret-reader-role (532 of 930) +clusterrole openshift-csi-provisioner-volumeattachment-reader-role (533 of 930) +clusterrole openshift-csi-provisioner-volumeattributesclass-reader-role (534 of 930) +clusterrole openshift-csi-provisioner-volumesnapshot-reader-role (535 of 930) +clusterrole openshift-csi-resizer-infrastructure-reader-role (536 of 930) +clusterrole openshift-csi-resizer-storageclass-reader-role (537 of 930) +clusterrole openshift-csi-resizer-volumeattributesclass-reader-role (538 of 930) +clusterrole openshift-csi-main-attacher-role (539 of 930) +clusterrole openshift-csi-main-provisioner-role (540 of 930) +clusterrole openshift-csi-main-resizer-role (541 of 930) +clusterrole openshift-csi-main-snapshotter-role (542 of 930) +deployment openshift-cluster-storage-operator/cluster-storage-operator (543 of 930) +clusteroperator storage (544 of 930) +prometheusrule openshift-cluster-storage-operator/prometheus (545 of 930) + + + +28->44 + + 45 - -configmap openshift-machine-config-operator/coreos-bootimages (626 of 862) + +50-config-operator, 1 manifests +priorityclass openshift-user-critical (546 of 930) - - -25->45 - - + + +28->45 + + 46 - -configmap openshift-machine-config-operator/coreos-bootimages (627 of 862) - - - -25->46 - - + +50-console-operator, 76 manifests +customresourcedefinition consoleclidownloads.console.openshift.io (547 of 930) +customresourcedefinition consoleexternalloglinks.console.openshift.io (548 of 930) +customresourcedefinition consolelinks.console.openshift.io (549 of 930) +customresourcedefinition consolenotifications.console.openshift.io (550 of 930) +customresourcedefinition consolequickstarts.console.openshift.io (551 of 930) +customresourcedefinition consolesamples.console.openshift.io (552 of 930) +customresourcedefinition consoleyamlsamples.console.openshift.io (553 of 930) +customresourcedefinition helmchartrepositories.helm.openshift.io (554 of 930) +customresourcedefinition projecthelmchartrepositories.helm.openshift.io (555 of 930) +helmchartrepository openshift-helm-charts (556 of 930) +oauthclient console (557 of 930) +console cluster (558 of 930) +namespace openshift-console (559 of 930) +namespace openshift-console-operator (560 of 930) +namespace openshift-console-user-settings (561 of 930) +clusterrole console-extensions-reader (562 of 930) +clusterrole console-operator (563 of 930) +clusterrole console (564 of 930) +clusterrole helm-chartrepos-viewer (565 of 930) +clusterrole project-helm-chartrepository-editor (566 of 930) +role openshift-console/console-operator (567 of 930) +role openshift-config-managed/console-operator (568 of 930) +role openshift-config-managed/console-public (569 of 930) +role openshift-config-managed/console-configmap-reader (570 of 930) +role openshift-config/console-operator (571 of 930) +role openshift-console-user-settings/console-user-settings-admin (572 of 930) +rolebinding openshift-console-user-settings/console-user-settings-admin (573 of 930) +role openshift-monitoring/console-operator (574 of 930) +role openshift-console-operator/console-operator (575 of 930) +clusterrolebinding console-operator (576 of 930) +clusterrolebinding console-extensions-reader (577 of 930) +clusterrolebinding console-operator-auth-delegator (578 of 930) +clusterrolebinding console (579 of 930) +clusterrolebinding helm-chartrepos-view (580 of 930) +clusterrolebinding console-auth-delegator (581 of 930) +rolebinding openshift-console/console-operator (582 of 930) +rolebinding openshift-console-operator/console-operator (583 of 930) +rolebinding openshift-config-managed/console-operator (584 of 930) +rolebinding openshift-config-managed/console-public (585 of 930) +rolebinding openshift-config/console-operator (586 of 930) +rolebinding openshift-monitoring/console-operator (587 of 930) +rolebinding kube-system/console-operator (588 of 930) +rolebinding openshift-config-managed/console-configmap-reader (589 of 930) +rolebinding kube-system/console (590 of 930) +configmap openshift-console-operator/console-operator-config (591 of 930) +service openshift-console-operator/metrics (592 of 930) +configmap openshift-console-operator/telemetry-config (593 of 930) +serviceaccount openshift-console-operator/console-operator (594 of 930) +serviceaccount openshift-console/console (595 of 930) +configmap openshift-console-operator/trusted-ca (596 of 930) +consoleclidownload helm-download-links (597 of 930) +consoleclidownload netobserv (598 of 930) +deployment openshift-console-operator/console-operator (599 of 930) +customresourcedefinition consoleplugins.console.openshift.io (600 of 930) +clusteroperator console (601 of 930) +consolequickstart add-healthchecks (602 of 930) +prometheusrule openshift-console-operator/cluster-monitoring-prometheus-rules (603 of 930) +consolequickstart install-cryostat (604 of 930) +consolequickstart enable-developer-perspective (605 of 930) +consolequickstart explore-pipelines (606 of 930) +consolequickstart host-inventory (607 of 930) +consolequickstart user-impersonation (608 of 930) +consolequickstart install-helmchartrepo-ns (609 of 930) +consolequickstart install-multicluster-engine (610 of 930) +consolequickstart odf-install-tour (611 of 930) +consolequickstart install-serverless (612 of 930) +consolequickstart jboss-eap7-with-helm (613 of 930) +consolequickstart manage-helm-repos (614 of 930) +consolequickstart monitor-sampleapp (615 of 930) +consolequickstart node-with-s2i (616 of 930) +consolequickstart quarkus-with-helm (617 of 930) +consolequickstart quarkus-with-s2i (618 of 930) +consolequickstart rhdh-installation-via-helm (619 of 930) +consolequickstart rhdh-installation-via-operator (620 of 930) +consolequickstart sample-application (621 of 930) +consolequickstart spring-with-s2i (622 of 930) + + + +28->46 + + 47 - -configmap openshift-machine-config-operator/coreos-bootimages (628 of 862) + +50-console, 1 manifests +customresourcedefinition consoles.operator.openshift.io (623 of 930) - - -25->47 - - + + +28->47 + + 48 - -customresourcedefinition catalogsources.operators.coreos.com (629 of 862) -customresourcedefinition clusterserviceversions.operators.coreos.com (630 of 862) -customresourcedefinition installplans.operators.coreos.com (631 of 862) -namespace openshift-operator-lifecycle-manager (632 of 862) -namespace openshift-operators (633 of 862) -customresourcedefinition olmconfigs.operators.coreos.com (634 of 862) -customresourcedefinition operatorconditions.operators.coreos.com (635 of 862) -customresourcedefinition operatorgroups.operators.coreos.com (636 of 862) -customresourcedefinition operators.operators.coreos.com (637 of 862) -poddisruptionbudget openshift-operator-lifecycle-manager/packageserver-pdb (638 of 862) -configmap openshift-operator-lifecycle-manager/collect-profiles-config (639 of 862) -role openshift-operator-lifecycle-manager/collect-profiles (640 of 862) -rolebinding openshift-operator-lifecycle-manager/collect-profiles (641 of 862) -serviceaccount openshift-operator-lifecycle-manager/collect-profiles (642 of 862) -secret openshift-operator-lifecycle-manager/pprof-cert (643 of 862) -customresourcedefinition subscriptions.operators.coreos.com (644 of 862) -serviceaccount openshift-operator-lifecycle-manager/olm-operator-serviceaccount (645 of 862) -clusterrole system:controller:operator-lifecycle-manager (646 of 862) -clusterrolebinding olm-operator-binding-openshift-operator-lifecycle-manager (647 of 862) -olmconfig cluster (648 of 862) -service openshift-operator-lifecycle-manager/olm-operator-metrics (649 of 862) -service openshift-operator-lifecycle-manager/catalog-operator-metrics (650 of 862) -deployment openshift-operator-lifecycle-manager/package-server-manager (651 of 862) -service openshift-operator-lifecycle-manager/package-server-manager-metrics (652 of 862) -servicemonitor openshift-operator-lifecycle-manager/package-server-manager-metrics (653 of 862) -cronjob openshift-operator-lifecycle-manager/collect-profiles (654 of 862) -deployment openshift-operator-lifecycle-manager/olm-operator (655 of 862) -deployment openshift-operator-lifecycle-manager/catalog-operator (656 of 862) -clusterrole aggregate-olm-edit (657 of 862) -clusterrole aggregate-olm-view (658 of 862) -configmap openshift-operator-lifecycle-manager/olm-operators (659 of 862) -catalogsource openshift-operator-lifecycle-manager/olm-operators (660 of 862) -operatorgroup openshift-operators/global-operators (661 of 862) -operatorgroup openshift-operator-lifecycle-manager/olm-operators (662 of 862) -subscription openshift-operator-lifecycle-manager/packageserver (663 of 862) -role openshift/copied-csv-viewer (664 of 862) -rolebinding openshift/copied-csv-viewers (665 of 862) -clusteroperator operator-lifecycle-manager (666 of 862) -clusteroperator operator-lifecycle-manager-catalog (667 of 862) -clusteroperator operator-lifecycle-manager-packageserver (668 of 862) - - - -25->48 - - + +50-csi-driver, 1 manifests +customresourcedefinition clustercsidrivers.operator.openshift.io (624 of 930) + + + +28->48 + + 49 - -namespace openshift-marketplace (669 of 862) -serviceaccount openshift-marketplace/marketplace-operator (670 of 862) -clusterrole marketplace-operator (671 of 862) -role openshift-marketplace/marketplace-operator (672 of 862) -clusterrole operatorhub-config-reader (673 of 862) -clusterrolebinding marketplace-operator (674 of 862) -rolebinding openshift-marketplace/marketplace-operator (675 of 862) -configmap openshift-marketplace/marketplace-trusted-ca (676 of 862) -service openshift-marketplace/marketplace-operator-metrics (677 of 862) -deployment openshift-marketplace/marketplace-operator (678 of 862) -clusteroperator marketplace (679 of 862) -servicemonitor openshift-marketplace/marketplace-operator (680 of 862) -rolebinding openshift-marketplace/openshift-marketplace-metrics (681 of 862) -role openshift-marketplace/openshift-marketplace-metrics (682 of 862) -prometheusrule openshift-marketplace/marketplace-alert-rules (683 of 862) - - - -25->49 - - + +50-driver-toolkit, 1 manifests +imagestream openshift/driver-toolkit (625 of 930) + + + +28->49 + + 50 - -clusterrolebinding system:openshift:operator:service-ca-operator (684 of 862) -namespace openshift-service-ca-operator (685 of 862) -customresourcedefinition servicecas.operator.openshift.io (686 of 862) -service openshift-service-ca-operator/metrics (687 of 862) -configmap openshift-service-ca-operator/service-ca-operator-config (688 of 862) -serviceca cluster (689 of 862) -serviceaccount openshift-service-ca-operator/service-ca-operator (690 of 862) -deployment openshift-service-ca-operator/service-ca-operator (691 of 862) -clusteroperator service-ca (692 of 862) - - - -25->50 - - + +50-insights-operator, 36 manifests +namespace openshift-insights (626 of 930) +clusterrolebinding insights-operator-auth (627 of 930) +rolebinding kube-system/insights-operator-auth (628 of 930) +clusterrole insights-operator (629 of 930) +rolebinding openshift-monitoring/insights-operator-alertmanager (630 of 930) +clusterrolebinding insights-operator (631 of 930) +clusterrole insights-operator-gather (632 of 930) +clusterrolebinding insights-operator-gather (633 of 930) +clusterrolebinding insights-operator-gather-reader (634 of 930) +role openshift-config/insights-operator (635 of 930) +rolebinding openshift-config/insights-operator (636 of 930) +role openshift-insights/insights-operator (637 of 930) +rolebinding openshift-insights/insights-operator (638 of 930) +role openshift-insights/insights-operator-obfuscation-secret (639 of 930) +rolebinding openshift-insights/insights-operator-obfuscation-secret (640 of 930) +role openshift-config-managed/insights-operator-etc-pki-entitlement (641 of 930) +rolebinding openshift-config-managed/insights-operator-etc-pki-entitlement (642 of 930) +clusterrole openshift-insights/insights-runtime-extractor-role (643 of 930) +clusterrolebinding openshift-insights/insights-runtime-extractor (644 of 930) +securitycontextconstraints openshift-insights/insights-runtime-extractor-scc (645 of 930) +customresourcedefinition insightsoperators.operator.openshift.io (646 of 930) +serviceaccount openshift-insights/operator (647 of 930) +serviceaccount openshift-insights/gather (648 of 930) +serviceaccount openshift-insights/insights-runtime-extractor-sa (649 of 930) +insightsoperator cluster (650 of 930) +rolebinding openshift-insights/prometheus-k8s (651 of 930) +configmap openshift-insights/trusted-ca-bundle (652 of 930) +configmap openshift-insights/service-ca-bundle (653 of 930) +role openshift-insights/prometheus-k8s (654 of 930) +deployment openshift-insights/insights-operator (655 of 930) +service openshift-insights/metrics (656 of 930) +clusteroperator insights (657 of 930) +servicemonitor openshift-insights/insights-operator (658 of 930) +configmap openshift-insights/kube-rbac-proxy (659 of 930) +service openshift-insights/exporter (660 of 930) +daemonset openshift-insights/insights-runtime-extractor (661 of 930) + + + +28->50 + + 51 - -no manifests - - - -26->51 - - - - - -27->51 - - + +50-installer-artifacts, 1 manifests +configmap openshift-machine-config-operator/coreos-bootimages (662 of 930) - + 28->51 - - + + - - -29->51 - - + + +52 + +50-installer, 1 manifests +configmap openshift-machine-config-operator/coreos-bootimages (663 of 930) - + -30->51 - - +28->52 + + - + + +53 + +50-olm, 47 manifests +customresourcedefinition catalogsources.operators.coreos.com (664 of 930) +customresourcedefinition clusterserviceversions.operators.coreos.com (665 of 930) +customresourcedefinition installplans.operators.coreos.com (666 of 930) +namespace openshift-operator-lifecycle-manager (667 of 930) +namespace openshift-operators (668 of 930) +customresourcedefinition olmconfigs.operators.coreos.com (669 of 930) +customresourcedefinition operatorconditions.operators.coreos.com (670 of 930) +customresourcedefinition operatorgroups.operators.coreos.com (671 of 930) +customresourcedefinition operators.operators.coreos.com (672 of 930) +poddisruptionbudget openshift-operator-lifecycle-manager/packageserver-pdb (673 of 930) +configmap openshift-operator-lifecycle-manager/collect-profiles-config (674 of 930) +role openshift-operator-lifecycle-manager/collect-profiles (675 of 930) +rolebinding openshift-operator-lifecycle-manager/collect-profiles (676 of 930) +serviceaccount openshift-operator-lifecycle-manager/collect-profiles (677 of 930) +secret openshift-operator-lifecycle-manager/pprof-cert (678 of 930) +customresourcedefinition subscriptions.operators.coreos.com (679 of 930) +networkpolicy openshift-operator-lifecycle-manager/default-deny-all-traffic (680 of 930) +networkpolicy openshift-operator-lifecycle-manager/olm-operator (681 of 930) +networkpolicy openshift-operator-lifecycle-manager/catalog-operator (682 of 930) +networkpolicy openshift-operator-lifecycle-manager/packageserver (683 of 930) +networkpolicy openshift-operators/default-allow-all (684 of 930) +serviceaccount openshift-operator-lifecycle-manager/olm-operator-serviceaccount (685 of 930) +clusterrole system:controller:operator-lifecycle-manager (686 of 930) +clusterrolebinding olm-operator-binding-openshift-operator-lifecycle-manager (687 of 930) +olmconfig cluster (688 of 930) +service openshift-operator-lifecycle-manager/olm-operator-metrics (689 of 930) +service openshift-operator-lifecycle-manager/catalog-operator-metrics (690 of 930) +deployment openshift-operator-lifecycle-manager/package-server-manager (691 of 930) +networkpolicy openshift-operator-lifecycle-manager/package-server-manager (692 of 930) +service openshift-operator-lifecycle-manager/package-server-manager-metrics (693 of 930) +servicemonitor openshift-operator-lifecycle-manager/package-server-manager-metrics (694 of 930) +cronjob openshift-operator-lifecycle-manager/collect-profiles (695 of 930) +networkpolicy openshift-operator-lifecycle-manager/collect-profiles (696 of 930) +deployment openshift-operator-lifecycle-manager/olm-operator (697 of 930) +deployment openshift-operator-lifecycle-manager/catalog-operator (698 of 930) +clusterrole aggregate-olm-edit (699 of 930) +clusterrole aggregate-olm-view (700 of 930) +configmap openshift-operator-lifecycle-manager/olm-operators (701 of 930) +catalogsource openshift-operator-lifecycle-manager/olm-operators (702 of 930) +operatorgroup openshift-operators/global-operators (703 of 930) +operatorgroup openshift-operator-lifecycle-manager/olm-operators (704 of 930) +subscription openshift-operator-lifecycle-manager/packageserver (705 of 930) +role openshift/copied-csv-viewer (706 of 930) +rolebinding openshift/copied-csv-viewers (707 of 930) +clusteroperator operator-lifecycle-manager (708 of 930) +clusteroperator operator-lifecycle-manager-catalog (709 of 930) +clusteroperator operator-lifecycle-manager-packageserver (710 of 930) + + -31->51 - - +28->53 + + + + + +54 + +50-openshift-controller-manager, 1 manifests +customresourcedefinition openshiftcontrollermanagers.operator.openshift.io (711 of 930) - + -32->51 - - +28->54 + + - + + +55 + +50-operator-marketplace, 15 manifests +namespace openshift-marketplace (712 of 930) +serviceaccount openshift-marketplace/marketplace-operator (713 of 930) +clusterrole marketplace-operator (714 of 930) +role openshift-marketplace/marketplace-operator (715 of 930) +clusterrole operatorhub-config-reader (716 of 930) +clusterrolebinding marketplace-operator (717 of 930) +rolebinding openshift-marketplace/marketplace-operator (718 of 930) +configmap openshift-marketplace/marketplace-trusted-ca (719 of 930) +service openshift-marketplace/marketplace-operator-metrics (720 of 930) +deployment openshift-marketplace/marketplace-operator (721 of 930) +clusteroperator marketplace (722 of 930) +servicemonitor openshift-marketplace/marketplace-operator (723 of 930) +rolebinding openshift-marketplace/openshift-marketplace-metrics (724 of 930) +role openshift-marketplace/openshift-marketplace-metrics (725 of 930) +prometheusrule openshift-marketplace/marketplace-alert-rules (726 of 930) + + -33->51 - - +28->55 + + - + + +56 + +50-service-ca-operator, 9 manifests +clusterrolebinding system:openshift:operator:service-ca-operator (727 of 930) +namespace openshift-service-ca-operator (728 of 930) +customresourcedefinition servicecas.operator.openshift.io (729 of 930) +service openshift-service-ca-operator/metrics (730 of 930) +configmap openshift-service-ca-operator/service-ca-operator-config (731 of 930) +serviceca cluster (732 of 930) +serviceaccount openshift-service-ca-operator/service-ca-operator (733 of 930) +deployment openshift-service-ca-operator/service-ca-operator (734 of 930) +clusteroperator service-ca (735 of 930) + + -34->51 - - +28->56 + + - + + +57 + +50-storage, 1 manifests +customresourcedefinition storages.operator.openshift.io (736 of 930) + + -35->51 - - +28->57 + + - + + +58 + +51-olm, 12 manifests +olm cluster (737 of 930) +namespace openshift-cluster-olm-operator (738 of 930) +clusterrole cluster-olm-operator (739 of 930) +serviceaccount openshift-cluster-olm-operator/cluster-olm-operator (740 of 930) +service openshift-cluster-olm-operator/cluster-olm-operator-metrics (741 of 930) +clusterrolebinding cluster-olm-operator-role (742 of 930) +deployment openshift-cluster-olm-operator/cluster-olm-operator (743 of 930) +clusteroperator olm (744 of 930) +networkpolicy openshift-cluster-olm-operator/default-deny-all (745 of 930) +networkpolicy openshift-cluster-olm-operator/allow-egress-to-openshift-dns (746 of 930) +networkpolicy openshift-cluster-olm-operator/allow-egress-to-api-server (747 of 930) +networkpolicy openshift-cluster-olm-operator/allow-metrics-traffic (748 of 930) + + -36->51 - - +29->58 + + - + -37->51 - - +30->58 + + - + -38->51 - - +31->58 + + - + -39->51 - - +32->58 + + - + -40->51 - - +33->58 + + - + -41->51 - - +34->58 + + - + -42->51 - - +35->58 + + - + -43->51 - - +36->58 + + - + -44->51 - - +37->58 + + - + -45->51 - - +38->58 + + - + -46->51 - - +39->58 + + - + -47->51 - - +40->58 + + - + -48->51 - - +41->58 + + - + -49->51 - - +42->58 + + - + -50->51 - - +43->58 + + - - -52 - -namespace openshift-network-operator (693 of 862) -customresourcedefinition networks.operator.openshift.io (694 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-network (695 of 862) -customresourcedefinition egressrouters.network.operator.openshift.io (696 of 862) -customresourcedefinition operatorpkis.network.operator.openshift.io (697 of 862) -serviceaccount openshift-network-operator/cluster-network-operator (698 of 862) -clusterrolebinding cluster-network-operator (699 of 862) -deployment openshift-network-operator/network-operator (700 of 862) -clusteroperator network (701 of 862) - - + -51->52 - - +44->58 + + - - -53 - -clusterrole openshift-dns-operator (702 of 862) -namespace openshift-dns-operator (703 of 862) -customresourcedefinition dnses.operator.openshift.io (704 of 862) -clusterrolebinding openshift-dns-operator (705 of 862) -rolebinding openshift-dns-operator/dns-operator (706 of 862) -role openshift-dns-operator/dns-operator (707 of 862) -serviceaccount openshift-dns-operator/dns-operator (708 of 862) -service openshift-dns-operator/metrics (709 of 862) -deployment openshift-dns-operator/dns-operator (710 of 862) -clusteroperator dns (711 of 862) - - + -51->53 - - +45->58 + + - - -54 - -clusterrole system:openshift:machine-config-operator:cluster-reader (712 of 862) -namespace openshift-machine-config-operator (713 of 862) -namespace openshift-openstack-infra (714 of 862) -namespace openshift-kni-infra (715 of 862) -namespace openshift-ovirt-infra (716 of 862) -namespace openshift-vsphere-infra (717 of 862) -namespace openshift-nutanix-infra (718 of 862) -namespace openshift-cloud-platform-infra (719 of 862) -service openshift-machine-config-operator/machine-config-operator (720 of 862) -service openshift-machine-config-operator/machine-config-controller (721 of 862) -service openshift-machine-config-operator/machine-config-daemon (722 of 862) -customresourcedefinition machineconfigurations.operator.openshift.io (723 of 862) -customresourcedefinition containerruntimeconfigs.machineconfiguration.openshift.io (724 of 862) -customresourcedefinition kubeletconfigs.machineconfiguration.openshift.io (725 of 862) -customresourcedefinition machineconfigs.machineconfiguration.openshift.io (726 of 862) -customresourcedefinition machineconfigpools.machineconfiguration.openshift.io (727 of 862) -configmap openshift-machine-config-operator/machine-config-operator-images (728 of 862) -serviceaccount openshift-machine-config-operator/machine-config-operator (729 of 862) -clusterrolebinding custom-account-openshift-machine-config-operator (730 of 862) -role openshift-machine-config-operator/prometheus-k8s (731 of 862) -rolebinding openshift-machine-config-operator/prometheus-k8s (732 of 862) -deployment openshift-machine-config-operator/machine-config-operator (733 of 862) -configmap openshift-machine-config-operator/kube-rbac-proxy (734 of 862) -configmap openshift-machine-config-operator/machine-config-osimageurl (735 of 862) -clusteroperator machine-config (736 of 862) - - + -52->54 - - +46->58 + + - + -53->54 - - +47->58 + + - - -55 - -role openshift-cloud-credential-operator/prometheus-k8s (737 of 862) -rolebinding openshift-cloud-credential-operator/prometheus-k8s (738 of 862) -servicemonitor openshift-cloud-credential-operator/cloud-credential-operator (739 of 862) -prometheusrule openshift-cloud-credential-operator/cloud-credential-operator-alerts (740 of 862) - - + -54->55 - - +48->58 + + - - -56 - -role openshift-authentication-operator/prometheus-k8s (741 of 862) -role openshift-authentication/prometheus-k8s (742 of 862) -role openshift-oauth-apiserver/prometheus-k8s (743 of 862) -rolebinding openshift-authentication-operator/prometheus-k8s (744 of 862) -rolebinding openshift-authentication/prometheus-k8s (745 of 862) -rolebinding openshift-oauth-apiserver/prometheus-k8s (746 of 862) -servicemonitor openshift-authentication-operator/authentication-operator (747 of 862) -servicemonitor openshift-authentication/oauth-openshift (748 of 862) -servicemonitor openshift-oauth-apiserver/openshift-oauth-apiserver (749 of 862) -prometheusrule openshift-authentication-operator/authentication-operator (750 of 862) - - + -54->56 - - - - - -57 - -configmap openshift-config-managed/etcd-dashboard (751 of 862) -configmap openshift-config-managed/grafana-dashboard-etcd (752 of 862) +49->58 + + - + -54->57 - - +50->58 + + - - -58 - -clusterrole registry-monitoring (753 of 862) -clusterrolebinding registry-monitoring (754 of 862) -role openshift-image-registry/prometheus-k8s (755 of 862) -rolebinding openshift-image-registry/prometheus-k8s (756 of 862) -servicemonitor openshift-image-registry/image-registry (757 of 862) -servicemonitor openshift-image-registry/image-registry-operator (758 of 862) + + +51->58 + + + + + +52->58 + + + + + +53->58 + + - + 54->58 - - + + + + + +55->58 + + + + + +56->58 + + + + + +57->58 + + 59 - -role openshift-cluster-machine-approver/prometheus-k8s (759 of 862) -rolebinding openshift-cluster-machine-approver/prometheus-k8s (760 of 862) -servicemonitor openshift-cluster-machine-approver/cluster-machine-approver (761 of 862) -prometheusrule openshift-cluster-machine-approver/machineapprover-rules (762 of 862) - - - -54->59 - - + +70-cluster-network-operator, 8 manifests +namespace openshift-network-operator (749 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-network (750 of 930) +customresourcedefinition egressrouters.network.operator.openshift.io (751 of 930) +customresourcedefinition operatorpkis.network.operator.openshift.io (752 of 930) +serviceaccount openshift-network-operator/cluster-network-operator (753 of 930) +clusterrolebinding cluster-network-operator (754 of 930) +deployment openshift-network-operator/network-operator (755 of 930) +clusteroperator network (756 of 930) + + + +58->59 + + 60 - -operatorgroup openshift-monitoring/openshift-cluster-monitoring (763 of 862) -configmap openshift-config-managed/grafana-dashboard-cluster-total (764 of 862) -configmap openshift-config-managed/grafana-dashboard-k8s-resources-cluster (765 of 862) -configmap openshift-config-managed/grafana-dashboard-k8s-resources-namespace (766 of 862) -configmap openshift-config-managed/grafana-dashboard-k8s-resources-node (767 of 862) -configmap openshift-config-managed/grafana-dashboard-k8s-resources-pod (768 of 862) -configmap openshift-config-managed/grafana-dashboard-k8s-resources-workload (769 of 862) -configmap openshift-config-managed/grafana-dashboard-k8s-resources-workloads-namespace (770 of 862) -configmap openshift-config-managed/grafana-dashboard-namespace-by-pod (771 of 862) -configmap openshift-config-managed/grafana-dashboard-node-cluster-rsrc-use (772 of 862) -configmap openshift-config-managed/grafana-dashboard-node-rsrc-use (773 of 862) -configmap openshift-config-managed/grafana-dashboard-pod-total (774 of 862) -configmap openshift-config-managed/grafana-dashboard-prometheus (775 of 862) - - - -54->60 - - + +70-dns-operator, 10 manifests +clusterrole openshift-dns-operator (757 of 930) +namespace openshift-dns-operator (758 of 930) +customresourcedefinition dnses.operator.openshift.io (759 of 930) +clusterrolebinding openshift-dns-operator (760 of 930) +rolebinding openshift-dns-operator/dns-operator (761 of 930) +role openshift-dns-operator/dns-operator (762 of 930) +serviceaccount openshift-dns-operator/dns-operator (763 of 930) +service openshift-dns-operator/metrics (764 of 930) +deployment openshift-dns-operator/dns-operator (765 of 930) +clusteroperator dns (766 of 930) + + + +58->60 + + 61 - -role openshift-cluster-storage-operator/prometheus (776 of 862) -rolebinding openshift-cluster-storage-operator/prometheus (777 of 862) -servicemonitor openshift-cluster-storage-operator/cluster-storage-operator (778 of 862) + +70-network, 1 manifests +customresourcedefinition networks.operator.openshift.io (767 of 930) - - -54->61 - - + + +58->61 + + 62 - -configmap openshift-config-managed/release-verification (779 of 862) + +80-machine-config, 38 manifests +clusterrole system:openshift:machine-config-operator:cluster-reader (768 of 930) +namespace openshift-machine-config-operator (769 of 930) +namespace openshift-openstack-infra (770 of 930) +namespace openshift-kni-infra (771 of 930) +namespace openshift-ovirt-infra (772 of 930) +namespace openshift-vsphere-infra (773 of 930) +namespace openshift-nutanix-infra (774 of 930) +namespace openshift-cloud-platform-infra (775 of 930) +service openshift-machine-config-operator/machine-config-operator (776 of 930) +service openshift-machine-config-operator/machine-config-controller (777 of 930) +service openshift-machine-config-operator/machine-config-daemon (778 of 930) +customresourcedefinition containerruntimeconfigs.machineconfiguration.openshift.io (779 of 930) +customresourcedefinition controllerconfigs.machineconfiguration.openshift.io (780 of 930) +customresourcedefinition kubeletconfigs.machineconfiguration.openshift.io (781 of 930) +customresourcedefinition machineconfignodes.machineconfiguration.openshift.io (782 of 930) +customresourcedefinition machineconfigpools.machineconfiguration.openshift.io (783 of 930) +customresourcedefinition machineconfigs.machineconfiguration.openshift.io (784 of 930) +customresourcedefinition machineconfigurations.operator.openshift.io (785 of 930) +customresourcedefinition machineosbuilds.machineconfiguration.openshift.io (786 of 930) +customresourcedefinition machineosconfigs.machineconfiguration.openshift.io (787 of 930) +customresourcedefinition pinnedimagesets.machineconfiguration.openshift.io (788 of 930) +configmap openshift-machine-config-operator/machine-config-operator-images (789 of 930) +serviceaccount openshift-machine-config-operator/machine-config-operator (790 of 930) +clusterrolebinding custom-account-openshift-machine-config-operator (791 of 930) +role openshift-machine-config-operator/prometheus-k8s (792 of 930) +rolebinding openshift-machine-config-operator/prometheus-k8s (793 of 930) +role openshift-openstack-infra/host-networking-services (794 of 930) +role openshift-kni-infra/host-networking-services (795 of 930) +role openshift-vsphere-infra/host-networking-services (796 of 930) +role openshift-nutanix-infra/host-networking-services (797 of 930) +rolebinding openshift-openstack-infra/host-networking-system-node (798 of 930) +rolebinding openshift-kni-infra/host-networking-system-node (799 of 930) +rolebinding openshift-vsphere-infra/host-networking-system-node (800 of 930) +rolebinding openshift-nutanix-infra/host-networking-system-node (801 of 930) +deployment openshift-machine-config-operator/machine-config-operator (802 of 930) +configmap openshift-machine-config-operator/kube-rbac-proxy (803 of 930) +configmap openshift-machine-config-operator/machine-config-osimageurl (804 of 930) +clusteroperator machine-config (805 of 930) + + + +59->62 + + - - -54->62 - - + + +60->62 + + + + + +61->62 + + 63 - -role openshift-console-operator/prometheus-k8s (780 of 862) -rolebinding openshift-console-operator/prometheus-k8s (781 of 862) -servicemonitor openshift-console-operator/console-operator (782 of 862) -storageversionmigration console-plugin-storage-version-migration (783 of 862) + +90-baremetal-installer, 1 manifests +configmap openshift-config/installer-images (806 of 930) - - -54->63 - - + + +62->63 + + 64 - -role openshift-console/prometheus-k8s (784 of 862) -rolebinding openshift-console/prometheus-k8s (785 of 862) -servicemonitor openshift-console/console (786 of 862) - - - -54->64 - - + +90-cloud-credential-operator, 4 manifests +role openshift-cloud-credential-operator/prometheus-k8s (807 of 930) +rolebinding openshift-cloud-credential-operator/prometheus-k8s (808 of 930) +servicemonitor openshift-cloud-credential-operator/cloud-credential-operator (809 of 930) +prometheusrule openshift-cloud-credential-operator/cloud-credential-operator-alerts (810 of 930) + + + +62->64 + + 65 - -role openshift-dns-operator/prometheus-k8s (787 of 862) -rolebinding openshift-dns-operator/prometheus-k8s (788 of 862) -servicemonitor openshift-dns-operator/dns-operator (789 of 862) -prometheusrule openshift-dns-operator/dns (790 of 862) - - - -54->65 - - + +90-cluster-authentication-operator, 10 manifests +role openshift-authentication-operator/prometheus-k8s (811 of 930) +role openshift-authentication/prometheus-k8s (812 of 930) +role openshift-oauth-apiserver/prometheus-k8s (813 of 930) +rolebinding openshift-authentication-operator/prometheus-k8s (814 of 930) +rolebinding openshift-authentication/prometheus-k8s (815 of 930) +rolebinding openshift-oauth-apiserver/prometheus-k8s (816 of 930) +servicemonitor openshift-authentication-operator/authentication-operator (817 of 930) +servicemonitor openshift-authentication/oauth-openshift (818 of 930) +servicemonitor openshift-oauth-apiserver/openshift-oauth-apiserver (819 of 930) +prometheusrule openshift-authentication-operator/authentication-operator (820 of 930) + + + +62->65 + + 66 - -role openshift-etcd-operator/prometheus-k8s (791 of 862) -rolebinding openshift-etcd-operator/prometheus-k8s (792 of 862) -prometheusrule openshift-etcd-operator/etcd-prometheus-rules (793 of 862) -servicemonitor openshift-etcd-operator/etcd-operator (794 of 862) + +90-cluster-etcd-operator, 1 manifests +configmap openshift-config-managed/etcd-dashboard (821 of 930) - - -54->66 - - + + +62->66 + + 67 - -role openshift-ingress-operator/prometheus-k8s (795 of 862) -rolebinding openshift-ingress-operator/prometheus-k8s (796 of 862) -servicemonitor openshift-ingress-operator/ingress-operator (797 of 862) -prometheusrule openshift-ingress-operator/ingress-operator (798 of 862) - - - -54->67 - - + +90-cluster-image-registry-operator, 6 manifests +clusterrole registry-monitoring (822 of 930) +clusterrolebinding registry-monitoring (823 of 930) +role openshift-image-registry/prometheus-k8s (824 of 930) +rolebinding openshift-image-registry/prometheus-k8s (825 of 930) +servicemonitor openshift-image-registry/image-registry (826 of 930) +servicemonitor openshift-image-registry/image-registry-operator (827 of 930) + + + +62->67 + + 68 - -role openshift-kube-apiserver-operator/prometheus-k8s (799 of 862) -rolebinding openshift-kube-apiserver-operator/prometheus-k8s (800 of 862) -servicemonitor openshift-kube-apiserver-operator/kube-apiserver-operator (801 of 862) -prometheusrule openshift-kube-apiserver-operator/kube-apiserver-operator (802 of 862) -role openshift-kube-apiserver/prometheus-k8s (803 of 862) -rolebinding openshift-kube-apiserver/prometheus-k8s (804 of 862) -servicemonitor openshift-kube-apiserver/kube-apiserver (805 of 862) -prometheusrule openshift-kube-apiserver/kube-apiserver-performance-recording-rules (806 of 862) -prometheusrule openshift-kube-apiserver/kube-apiserver-recording-rules (807 of 862) -configmap openshift-config-managed/grafana-dashboard-apiserver-performance (808 of 862) -configmap openshift-config-managed/grafana-dashboard-api-performance (809 of 862) - - - -54->68 - - + +90-cluster-machine-approver, 4 manifests +role openshift-cluster-machine-approver/prometheus-k8s (828 of 930) +rolebinding openshift-cluster-machine-approver/prometheus-k8s (829 of 930) +servicemonitor openshift-cluster-machine-approver/cluster-machine-approver (830 of 930) +prometheusrule openshift-cluster-machine-approver/machineapprover-rules (831 of 930) + + + +62->68 + + 69 - -role openshift-kube-controller-manager-operator/prometheus-k8s (810 of 862) -rolebinding openshift-kube-controller-manager-operator/prometheus-k8s (811 of 862) -servicemonitor openshift-kube-controller-manager-operator/kube-controller-manager-operator (812 of 862) -role openshift-kube-controller-manager/prometheus-k8s (813 of 862) -rolebinding openshift-kube-controller-manager/prometheus-k8s (814 of 862) -servicemonitor openshift-kube-controller-manager/kube-controller-manager (815 of 862) -prometheusrule openshift-kube-controller-manager-operator/kube-controller-manager-operator (816 of 862) - - - -54->69 - - + +90-cluster-monitoring-operator, 13 manifests +operatorgroup openshift-monitoring/openshift-cluster-monitoring (832 of 930) +configmap openshift-config-managed/dashboard-node-cluster-rsrc-use (833 of 930) +configmap openshift-config-managed/dashboard-node-rsrc-use (834 of 930) +configmap openshift-config-managed/dashboard-prometheus (835 of 930) +configmap openshift-config-managed/dashboard-cluster-total (836 of 930) +configmap openshift-config-managed/dashboard-k8s-resources-cluster (837 of 930) +configmap openshift-config-managed/dashboard-k8s-resources-namespace (838 of 930) +configmap openshift-config-managed/dashboard-k8s-resources-node (839 of 930) +configmap openshift-config-managed/dashboard-k8s-resources-pod (840 of 930) +configmap openshift-config-managed/dashboard-k8s-resources-workload (841 of 930) +configmap openshift-config-managed/dashboard-k8s-resources-workloads-namespace (842 of 930) +configmap openshift-config-managed/dashboard-namespace-by-pod (843 of 930) +configmap openshift-config-managed/dashboard-pod-total (844 of 930) + + + +62->69 + + 70 - -role openshift-kube-scheduler-operator/prometheus-k8s (817 of 862) -rolebinding openshift-kube-scheduler-operator/prometheus-k8s (818 of 862) -servicemonitor openshift-kube-scheduler-operator/kube-scheduler-operator (819 of 862) -prometheusrule openshift-kube-scheduler-operator/kube-scheduler-operator (820 of 862) -clusterrole prometheus-k8s-scheduler-resources (821 of 862) -role openshift-kube-scheduler/prometheus-k8s (822 of 862) -rolebinding openshift-kube-scheduler/prometheus-k8s (823 of 862) -clusterrolebinding prometheus-k8s-scheduler-resources (824 of 862) -servicemonitor openshift-kube-scheduler/kube-scheduler (825 of 862) - - - -54->70 - - + +90-cluster-storage-operator, 4 manifests +role openshift-cluster-storage-operator/prometheus (845 of 930) +rolebinding openshift-cluster-storage-operator/prometheus (846 of 930) +servicemonitor openshift-cluster-storage-operator/cluster-storage-operator (847 of 930) +networkpolicy openshift-cluster-storage-operator/default-deny (848 of 930) + + + +62->70 + + 71 - -servicemonitor openshift-machine-api/machine-api-operator (826 of 862) -servicemonitor openshift-machine-api/machine-api-controllers (827 of 862) -prometheusrule openshift-machine-api/machine-api-operator-prometheus-rules (828 of 862) + +90-cluster-update-keys, 1 manifests +configmap openshift-config-managed/release-verification (849 of 930) - - -54->71 - - + + +62->71 + + 72 - -servicemonitor openshift-machine-config-operator/machine-config-operator (829 of 862) -servicemonitor openshift-machine-config-operator/machine-config-controller (830 of 862) -servicemonitor openshift-machine-config-operator/machine-config-daemon (831 of 862) -storageversionmigration machineconfiguration-controllerconfig-storage-version-migration (832 of 862) -storageversionmigration machineconfiguration-machineconfigpool-storage-version-migration (833 of 862) -configmap openshift-config-managed/node-cluster (834 of 862) -prometheusrule openshift-machine-config-operator/machine-config-controller (835 of 862) -prometheusrule openshift-machine-config-operator/machine-config-daemon (836 of 862) -clusterrolebinding default-account-openshift-machine-config-operator (837 of 862) - - - -54->72 - - + +90-console-operator, 4 manifests +role openshift-console-operator/prometheus-k8s (850 of 930) +rolebinding openshift-console-operator/prometheus-k8s (851 of 930) +servicemonitor openshift-console-operator/console-operator (852 of 930) +storageversionmigration console-plugin-storage-version-migration (853 of 930) + + + +62->72 + + 73 - -role openshift-operator-lifecycle-manager/operator-lifecycle-manager-metrics (838 of 862) -rolebinding openshift-operator-lifecycle-manager/operator-lifecycle-manager-metrics (839 of 862) -servicemonitor openshift-operator-lifecycle-manager/olm-operator (840 of 862) -servicemonitor openshift-operator-lifecycle-manager/catalog-operator (841 of 862) -prometheusrule openshift-operator-lifecycle-manager/olm-alert-rules (842 of 862) - - - -54->73 - - + +90-console, 3 manifests +role openshift-console/prometheus-k8s (854 of 930) +rolebinding openshift-console/prometheus-k8s (855 of 930) +servicemonitor openshift-console/console (856 of 930) + + + +62->73 + + 74 - -role openshift-apiserver-operator/prometheus-k8s (843 of 862) -rolebinding openshift-apiserver-operator/prometheus-k8s (844 of 862) -servicemonitor openshift-apiserver-operator/openshift-apiserver-operator (845 of 862) -role openshift-apiserver/prometheus-k8s (846 of 862) -rolebinding openshift-apiserver/prometheus-k8s (847 of 862) -servicemonitor openshift-apiserver/openshift-apiserver (848 of 862) -service openshift-apiserver/check-endpoints (849 of 862) -servicemonitor openshift-apiserver/openshift-apiserver-operator-check-endpoints (850 of 862) - - - -54->74 - - + +90-dns-operator, 4 manifests +role openshift-dns-operator/prometheus-k8s (857 of 930) +rolebinding openshift-dns-operator/prometheus-k8s (858 of 930) +servicemonitor openshift-dns-operator/dns-operator (859 of 930) +prometheusrule openshift-dns-operator/dns (860 of 930) + + + +62->74 + + 75 - -role openshift-controller-manager-operator/prometheus-k8s (851 of 862) -rolebinding openshift-controller-manager-operator/prometheus-k8s (852 of 862) -servicemonitor openshift-controller-manager-operator/openshift-controller-manager-operator (853 of 862) -role openshift-controller-manager/prometheus-k8s (854 of 862) -rolebinding openshift-controller-manager/prometheus-k8s (855 of 862) -servicemonitor openshift-controller-manager/openshift-controller-manager (856 of 862) -role openshift-route-controller-manager/prometheus-k8s (857 of 862) -rolebinding openshift-route-controller-manager/prometheus-k8s (858 of 862) -servicemonitor openshift-route-controller-manager/openshift-route-controller-manager (859 of 862) - - - -54->75 - - + +90-etcd-operator, 4 manifests +role openshift-etcd-operator/prometheus-k8s (861 of 930) +rolebinding openshift-etcd-operator/prometheus-k8s (862 of 930) +prometheusrule openshift-etcd-operator/etcd-prometheus-rules (863 of 930) +servicemonitor openshift-etcd-operator/etcd-operator (864 of 930) + + + +62->75 + + 76 - -role openshift-service-ca-operator/prometheus-k8s (860 of 862) -rolebinding openshift-service-ca-operator/prometheus-k8s (861 of 862) -servicemonitor openshift-service-ca-operator/service-ca-operator (862 of 862) - - - -54->76 - - + +90-ingress-operator, 4 manifests +role openshift-ingress-operator/prometheus-k8s (865 of 930) +rolebinding openshift-ingress-operator/prometheus-k8s (866 of 930) +servicemonitor openshift-ingress-operator/ingress-operator (867 of 930) +prometheusrule openshift-ingress-operator/ingress-operator (868 of 930) + + + +62->76 + + + + + +77 + +90-kube-apiserver-operator, 9 manifests +role openshift-kube-apiserver-operator/prometheus-k8s (869 of 930) +rolebinding openshift-kube-apiserver-operator/prometheus-k8s (870 of 930) +servicemonitor openshift-kube-apiserver-operator/kube-apiserver-operator (871 of 930) +prometheusrule openshift-kube-apiserver-operator/kube-apiserver-operator (872 of 930) +role openshift-kube-apiserver/prometheus-k8s (873 of 930) +rolebinding openshift-kube-apiserver/prometheus-k8s (874 of 930) +servicemonitor openshift-kube-apiserver/kube-apiserver (875 of 930) +prometheusrule openshift-kube-apiserver/kube-apiserver-performance-recording-rules (876 of 930) +configmap openshift-config-managed/grafana-dashboard-apiserver-performance (877 of 930) + + + +62->77 + + + + + +78 + +90-kube-controller-manager-operator, 7 manifests +role openshift-kube-controller-manager-operator/prometheus-k8s (878 of 930) +rolebinding openshift-kube-controller-manager-operator/prometheus-k8s (879 of 930) +servicemonitor openshift-kube-controller-manager-operator/kube-controller-manager-operator (880 of 930) +role openshift-kube-controller-manager/prometheus-k8s (881 of 930) +rolebinding openshift-kube-controller-manager/prometheus-k8s (882 of 930) +servicemonitor openshift-kube-controller-manager/kube-controller-manager (883 of 930) +prometheusrule openshift-kube-controller-manager-operator/kube-controller-manager-operator (884 of 930) + + + +62->78 + + + + + +79 + +90-kube-scheduler-operator, 9 manifests +role openshift-kube-scheduler-operator/prometheus-k8s (885 of 930) +rolebinding openshift-kube-scheduler-operator/prometheus-k8s (886 of 930) +servicemonitor openshift-kube-scheduler-operator/kube-scheduler-operator (887 of 930) +prometheusrule openshift-kube-scheduler-operator/kube-scheduler-operator (888 of 930) +clusterrole prometheus-k8s-scheduler-resources (889 of 930) +role openshift-kube-scheduler/prometheus-k8s (890 of 930) +rolebinding openshift-kube-scheduler/prometheus-k8s (891 of 930) +clusterrolebinding prometheus-k8s-scheduler-resources (892 of 930) +servicemonitor openshift-kube-scheduler/kube-scheduler (893 of 930) + + + +62->79 + + + + + +80 + +90-machine-api-operator, 3 manifests +servicemonitor openshift-machine-api/machine-api-operator (894 of 930) +servicemonitor openshift-machine-api/machine-api-controllers (895 of 930) +prometheusrule openshift-machine-api/machine-api-operator-prometheus-rules (896 of 930) + + + +62->80 + + + + + +81 + +90-machine-config, 9 manifests +servicemonitor openshift-machine-config-operator/machine-config-operator (897 of 930) +servicemonitor openshift-machine-config-operator/machine-config-controller (898 of 930) +servicemonitor openshift-machine-config-operator/machine-config-daemon (899 of 930) +storageversionmigration machineconfiguration-controllerconfig-storage-version-migration (900 of 930) +storageversionmigration machineconfiguration-machineconfigpool-storage-version-migration (901 of 930) +configmap openshift-config-managed/node-cluster (902 of 930) +prometheusrule openshift-machine-config-operator/machine-config-controller (903 of 930) +prometheusrule openshift-machine-config-operator/machine-config-daemon (904 of 930) +clusterrolebinding default-account-openshift-machine-config-operator (905 of 930) + + + +62->81 + + + + + +82 + +90-olm, 5 manifests +role openshift-operator-lifecycle-manager/operator-lifecycle-manager-metrics (906 of 930) +rolebinding openshift-operator-lifecycle-manager/operator-lifecycle-manager-metrics (907 of 930) +servicemonitor openshift-operator-lifecycle-manager/olm-operator (908 of 930) +servicemonitor openshift-operator-lifecycle-manager/catalog-operator (909 of 930) +prometheusrule openshift-operator-lifecycle-manager/olm-alert-rules (910 of 930) + + + +62->82 + + + + + +83 + +90-openshift-apiserver-operator, 8 manifests +role openshift-apiserver-operator/prometheus-k8s (911 of 930) +rolebinding openshift-apiserver-operator/prometheus-k8s (912 of 930) +servicemonitor openshift-apiserver-operator/openshift-apiserver-operator (913 of 930) +role openshift-apiserver/prometheus-k8s (914 of 930) +rolebinding openshift-apiserver/prometheus-k8s (915 of 930) +servicemonitor openshift-apiserver/openshift-apiserver (916 of 930) +service openshift-apiserver/check-endpoints (917 of 930) +servicemonitor openshift-apiserver/openshift-apiserver-operator-check-endpoints (918 of 930) + + + +62->83 + + + + + +84 + +90-openshift-controller-manager-operator, 9 manifests +role openshift-controller-manager-operator/prometheus-k8s (919 of 930) +rolebinding openshift-controller-manager-operator/prometheus-k8s (920 of 930) +servicemonitor openshift-controller-manager-operator/openshift-controller-manager-operator (921 of 930) +role openshift-controller-manager/prometheus-k8s (922 of 930) +rolebinding openshift-controller-manager/prometheus-k8s (923 of 930) +servicemonitor openshift-controller-manager/openshift-controller-manager (924 of 930) +role openshift-route-controller-manager/prometheus-k8s (925 of 930) +rolebinding openshift-route-controller-manager/prometheus-k8s (926 of 930) +servicemonitor openshift-route-controller-manager/openshift-route-controller-manager (927 of 930) + + + +62->84 + + + + + +85 + +90-service-ca-operator, 3 manifests +role openshift-service-ca-operator/prometheus-k8s (928 of 930) +rolebinding openshift-service-ca-operator/prometheus-k8s (929 of 930) +servicemonitor openshift-service-ca-operator/service-ca-operator (930 of 930) + + + +62->85 + + diff --git a/docs/user/tasks-flatten-by-number-and-component.svg b/docs/user/tasks-flatten-by-number-and-component.svg index 44eb573b1..0d8aea45a 100644 --- a/docs/user/tasks-flatten-by-number-and-component.svg +++ b/docs/user/tasks-flatten-by-number-and-component.svg @@ -4,1692 +4,1954 @@ - - + + tasks - + 0 - -no manifests + +0 manifests 1 - -namespace openshift-config-operator (1 of 862) + +00-config-operator, 1 manifests +namespace openshift-config-operator (1 of 930) 0->1 - - + + 2 - -customresourcedefinition rolebindingrestrictions.authorization.openshift.io (2 of 862) + +03-cloud-credential-operator, 2 manifests +namespace openshift-cloud-credential-operator (2 of 930) +customresourcedefinition credentialsrequests.cloudcredential.openshift.io (3 of 930) 0->2 - - + + 3 - -namespace openshift-cloud-credential-operator (3 of 862) -customresourcedefinition credentialsrequests.cloudcredential.openshift.io (4 of 862) + +03-config-operator, 5 manifests +customresourcedefinition clusterresourcequotas.quota.openshift.io (4 of 930) +customresourcedefinition proxies.config.openshift.io (5 of 930) +customresourcedefinition rolebindingrestrictions.authorization.openshift.io (6 of 930) +customresourcedefinition securitycontextconstraints.security.openshift.io (7 of 930) +customresourcedefinition rangeallocations.security.internal.openshift.io (8 of 930) 0->3 - - + + 4 - -customresourcedefinition proxies.config.openshift.io (5 of 862) + +03-marketplace-operator, 1 manifests +operatorhub cluster (9 of 930) 0->4 - - + + 5 - -customresourcedefinition operatorhubs.config.openshift.io (6 of 862) -operatorhub cluster (7 of 862) + +03-marketplace, 1 manifests +customresourcedefinition operatorhubs.config.openshift.io (10 of 930) 0->5 - - + + 6 - -customresourcedefinition clusterresourcequotas.quota.openshift.io (8 of 862) + +05-config-operator, 13 manifests +apiserver cluster (11 of 930) +authentication cluster (12 of 930) +console cluster (13 of 930) +dns cluster (14 of 930) +featuregate cluster (15 of 930) +image cluster (16 of 930) +infrastructure cluster (17 of 930) +ingress cluster (18 of 930) +network cluster (19 of 930) +oauth cluster (20 of 930) +project cluster (21 of 930) +proxy cluster (22 of 930) +scheduler cluster (23 of 930) 0->6 - - + + 7 - -customresourcedefinition securitycontextconstraints.security.openshift.io (9 of 862) + +10-config-operator, 31 manifests +customresourcedefinition apiservers.config.openshift.io (24 of 930) +customresourcedefinition authentications.config.openshift.io (25 of 930) +customresourcedefinition configs.operator.openshift.io (26 of 930) +customresourcedefinition consoles.config.openshift.io (27 of 930) +customresourcedefinition dnses.config.openshift.io (28 of 930) +customresourcedefinition featuregates.config.openshift.io (29 of 930) +customresourcedefinition imagecontentpolicies.config.openshift.io (30 of 930) +customresourcedefinition imagecontentsourcepolicies.operator.openshift.io (31 of 930) +customresourcedefinition imagedigestmirrorsets.config.openshift.io (32 of 930) +customresourcedefinition images.config.openshift.io (33 of 930) +customresourcedefinition imagetagmirrorsets.config.openshift.io (34 of 930) +customresourcedefinition infrastructures.config.openshift.io (35 of 930) +customresourcedefinition ingresses.config.openshift.io (36 of 930) +customresourcedefinition networks.config.openshift.io (37 of 930) +customresourcedefinition nodes.config.openshift.io (38 of 930) +customresourcedefinition oauths.config.openshift.io (39 of 930) +namespace openshift-config-managed (40 of 930) +namespace openshift-config (41 of 930) +config cluster (42 of 930) +customresourcedefinition projects.config.openshift.io (43 of 930) +role openshift-config-operator/prometheus-k8s (44 of 930) +customresourcedefinition schedulers.config.openshift.io (45 of 930) +clusterrole system:openshift:cluster-config-operator:cluster-reader (46 of 930) +node cluster (47 of 930) +rolebinding openshift-config-operator/prometheus-k8s (48 of 930) +service openshift-config-operator/metrics (49 of 930) +servicemonitor openshift-config-operator/config-operator (50 of 930) +clusterrolebinding system:openshift:operator:openshift-config-operator (51 of 930) +serviceaccount openshift-config-operator/openshift-config-operator (52 of 930) +deployment openshift-config-operator/openshift-config-operator (53 of 930) +clusteroperator config-operator (54 of 930) 0->7 - - + + 8 - -customresourcedefinition rangeallocations.security.internal.openshift.io (10 of 862) + +10-control-plane-machine-set, 1 manifests +customresourcedefinition controlplanemachinesets.machine.openshift.io (55 of 930) 0->8 - - + + 9 - -apiserver cluster (11 of 862) -authentication cluster (12 of 862) -console cluster (13 of 862) -dns cluster (14 of 862) -featuregate cluster (15 of 862) -image cluster (16 of 862) -infrastructure cluster (17 of 862) -ingress cluster (18 of 862) -network cluster (19 of 862) -oauth cluster (20 of 862) -project cluster (21 of 862) -proxy cluster (22 of 862) -scheduler cluster (23 of 862) + +10-openshift-controller-manager-operator, 1 manifests +build cluster (56 of 930) 0->9 - - + + 10 - -build cluster (24 of 862) + +10-openshift-controller-manager, 1 manifests +customresourcedefinition builds.config.openshift.io (57 of 930) 0->10 - - + + 11 - -customresourcedefinition apiservers.config.openshift.io (25 of 862) -customresourcedefinition authentications.config.openshift.io (26 of 862) -customresourcedefinition configs.operator.openshift.io (27 of 862) -customresourcedefinition consoles.config.openshift.io (28 of 862) -customresourcedefinition dnses.config.openshift.io (29 of 862) -customresourcedefinition featuregates.config.openshift.io (30 of 862) -customresourcedefinition images.config.openshift.io (31 of 862) -customresourcedefinition imagecontentpolicies.config.openshift.io (32 of 862) -customresourcedefinition imagecontentsourcepolicies.operator.openshift.io (33 of 862) -customresourcedefinition imagedigestmirrorsets.config.openshift.io (34 of 862) -customresourcedefinition imagetagmirrorsets.config.openshift.io (35 of 862) -customresourcedefinition infrastructures.config.openshift.io (36 of 862) -customresourcedefinition ingresses.config.openshift.io (37 of 862) -customresourcedefinition networks.config.openshift.io (38 of 862) -customresourcedefinition nodes.config.openshift.io (39 of 862) -customresourcedefinition oauths.config.openshift.io (40 of 862) -namespace openshift-config-managed (41 of 862) -namespace openshift-config (42 of 862) -config cluster (43 of 862) -customresourcedefinition projects.config.openshift.io (44 of 862) -role openshift-config-operator/prometheus-k8s (45 of 862) -customresourcedefinition schedulers.config.openshift.io (46 of 862) -clusterrole system:openshift:cluster-config-operator:cluster-reader (47 of 862) -node cluster (48 of 862) -rolebinding openshift-config-operator/prometheus-k8s (49 of 862) -service openshift-config-operator/metrics (50 of 862) -servicemonitor openshift-config-operator/config-operator (51 of 862) -clusterrolebinding system:openshift:operator:openshift-config-operator (52 of 862) -serviceaccount openshift-config-operator/openshift-config-operator (53 of 862) -deployment openshift-config-operator/openshift-config-operator (54 of 862) -clusteroperator config-operator (55 of 862) + +10-operator-lifecycle-manager, 1 manifests +customresourcedefinition olms.operator.openshift.io (58 of 930) 0->11 - - + + 12 - -customresourcedefinition builds.config.openshift.io (56 of 862) + +12-etcd, 1 manifests +customresourcedefinition etcds.operator.openshift.io (59 of 930) 0->12 - - + + 13 - -customresourcedefinition etcds.operator.openshift.io (57 of 862) + +20-etcd-operator, 12 manifests +namespace openshift-etcd-operator (60 of 930) +etcd cluster (61 of 930) +service openshift-etcd-operator/metrics (62 of 930) +configmap openshift-etcd-operator/etcd-operator-config (63 of 930) +configmap openshift-etcd-operator/etcd-ca-bundle (64 of 930) +configmap openshift-etcd-operator/etcd-service-ca-bundle (65 of 930) +secret openshift-etcd-operator/etcd-client (66 of 930) +clusterrolebinding system:openshift:operator:etcd-operator (67 of 930) +serviceaccount openshift-etcd-operator/etcd-operator (68 of 930) +deployment openshift-etcd-operator/etcd-operator (69 of 930) +clusteroperator etcd (70 of 930) +flowschema openshift-etcd-operator (71 of 930) 0->13 - - + + 14 - -namespace openshift-etcd-operator (58 of 862) -etcd cluster (59 of 862) -service openshift-etcd-operator/metrics (60 of 862) -configmap openshift-etcd-operator/etcd-operator-config (61 of 862) -configmap openshift-etcd-operator/etcd-ca-bundle (62 of 862) -configmap openshift-etcd-operator/etcd-service-ca-bundle (63 of 862) -secret openshift-etcd-operator/etcd-client (64 of 862) -clusterrolebinding system:openshift:operator:etcd-operator (65 of 862) -serviceaccount openshift-etcd-operator/etcd-operator (66 of 862) -deployment openshift-etcd-operator/etcd-operator (67 of 862) -clusteroperator etcd (68 of 862) -flowschema openshift-etcd-operator (69 of 862) + +20-kube-apiserver-operator, 35 manifests +clusterrole system:openshift:scc:anyuid (72 of 930) +clusterrole system:openshift:scc:hostaccess (73 of 930) +clusterrole system:openshift:scc:hostmount-anyuid-v2 (74 of 930) +clusterrole system:openshift:scc:hostmount-anyuid (75 of 930) +clusterrole system:openshift:scc:hostmount (76 of 930) +clusterrole system:openshift:scc:hostnetwork-v2 (77 of 930) +clusterrole system:openshift:scc:hostnetwork (78 of 930) +clusterrole system:openshift:scc:nonroot-v2 (79 of 930) +clusterrole system:openshift:scc:nonroot (80 of 930) +clusterrole system:openshift:scc:privileged (81 of 930) +clusterrole system:openshift:scc:restricted-v2 (82 of 930) +clusterrole system:openshift:scc:restricted (83 of 930) +clusterrolebinding system:openshift:scc:restricted-v2 (84 of 930) +namespace openshift-kube-apiserver-operator (85 of 930) +securitycontextconstraints anyuid (86 of 930) +securitycontextconstraints hostaccess (87 of 930) +securitycontextconstraints hostmount-anyuid-v2 (88 of 930) +securitycontextconstraints hostmount-anyuid (89 of 930) +securitycontextconstraints hostnetwork-v2 (90 of 930) +securitycontextconstraints hostnetwork (91 of 930) +securitycontextconstraints nonroot-v2 (92 of 930) +securitycontextconstraints nonroot (93 of 930) +securitycontextconstraints privileged (94 of 930) +securitycontextconstraints restricted-v2 (95 of 930) +securitycontextconstraints restricted (96 of 930) +kubeapiserver cluster (97 of 930) +service openshift-kube-apiserver-operator/metrics (98 of 930) +configmap openshift-kube-apiserver-operator/kube-apiserver-operator-config (99 of 930) +clusterrolebinding system:openshift:operator:kube-apiserver-operator (100 of 930) +serviceaccount openshift-kube-apiserver-operator/kube-apiserver-operator (101 of 930) +deployment openshift-kube-apiserver-operator/kube-apiserver-operator (102 of 930) +clusteroperator kube-apiserver (103 of 930) +prioritylevelconfiguration openshift-control-plane-operators (104 of 930) +flowschema openshift-monitoring-metrics (105 of 930) +flowschema openshift-kube-apiserver-operator (106 of 930) 0->14 - - + + 15 - -clusterrole system:openshift:scc:anyuid (70 of 862) -clusterrole system:openshift:scc:hostaccess (71 of 862) -clusterrole system:openshift:scc:hostmount (72 of 862) -clusterrole system:openshift:scc:hostnetwork-v2 (73 of 862) -clusterrole system:openshift:scc:hostnetwork (74 of 862) -clusterrole system:openshift:scc:nonroot-v2 (75 of 862) -clusterrole system:openshift:scc:nonroot (76 of 862) -clusterrole system:openshift:scc:privileged (77 of 862) -clusterrole system:openshift:scc:restricted-v2 (78 of 862) -clusterrole system:openshift:scc:restricted (79 of 862) -clusterrolebinding system:openshift:scc:restricted-v2 (80 of 862) -namespace openshift-kube-apiserver-operator (81 of 862) -securitycontextconstraints anyuid (82 of 862) -securitycontextconstraints hostaccess (83 of 862) -securitycontextconstraints hostmount-anyuid (84 of 862) -securitycontextconstraints hostnetwork-v2 (85 of 862) -securitycontextconstraints hostnetwork (86 of 862) -securitycontextconstraints nonroot-v2 (87 of 862) -securitycontextconstraints nonroot (88 of 862) -securitycontextconstraints privileged (89 of 862) -securitycontextconstraints restricted-v2 (90 of 862) -securitycontextconstraints restricted (91 of 862) -customresourcedefinition kubeapiservers.operator.openshift.io (92 of 862) -kubeapiserver cluster (93 of 862) -service openshift-kube-apiserver-operator/metrics (94 of 862) -configmap openshift-kube-apiserver-operator/kube-apiserver-operator-config (95 of 862) -clusterrolebinding system:openshift:operator:kube-apiserver-operator (96 of 862) -serviceaccount openshift-kube-apiserver-operator/kube-apiserver-operator (97 of 862) -deployment openshift-kube-apiserver-operator/kube-apiserver-operator (98 of 862) -clusteroperator kube-apiserver (99 of 862) -prioritylevelconfiguration openshift-control-plane-operators (100 of 862) -flowschema openshift-monitoring-metrics (101 of 862) -flowschema openshift-kube-apiserver-operator (102 of 862) + +20-kube-apiserver, 1 manifests +customresourcedefinition kubeapiservers.operator.openshift.io (107 of 930) 0->15 - - + + 16 - -namespace openshift-kube-controller-manager-operator (103 of 862) -customresourcedefinition kubecontrollermanagers.operator.openshift.io (104 of 862) -kubecontrollermanager cluster (105 of 862) -service openshift-kube-controller-manager-operator/metrics (106 of 862) -configmap openshift-kube-controller-manager-operator/kube-controller-manager-operator-config (107 of 862) -clusterrolebinding system:openshift:operator:kube-controller-manager-operator (108 of 862) -serviceaccount openshift-kube-controller-manager-operator/kube-controller-manager-operator (109 of 862) -deployment openshift-kube-controller-manager-operator/kube-controller-manager-operator (110 of 862) -clusteroperator kube-controller-manager (111 of 862) + +25-kube-controller-manager-operator, 8 manifests +namespace openshift-kube-controller-manager-operator (108 of 930) +kubecontrollermanager cluster (109 of 930) +service openshift-kube-controller-manager-operator/metrics (110 of 930) +configmap openshift-kube-controller-manager-operator/kube-controller-manager-operator-config (111 of 930) +clusterrolebinding system:openshift:operator:kube-controller-manager-operator (112 of 930) +serviceaccount openshift-kube-controller-manager-operator/kube-controller-manager-operator (113 of 930) +deployment openshift-kube-controller-manager-operator/kube-controller-manager-operator (114 of 930) +clusteroperator kube-controller-manager (115 of 930) 0->16 - - + + 17 - -namespace openshift-kube-scheduler-operator (112 of 862) -customresourcedefinition kubeschedulers.operator.openshift.io (113 of 862) -kubescheduler cluster (114 of 862) -service openshift-kube-scheduler-operator/metrics (115 of 862) -configmap openshift-kube-scheduler-operator/openshift-kube-scheduler-operator-config (116 of 862) -clusterrolebinding system:openshift:operator:cluster-kube-scheduler-operator (117 of 862) -serviceaccount openshift-kube-scheduler-operator/openshift-kube-scheduler-operator (118 of 862) -deployment openshift-kube-scheduler-operator/openshift-kube-scheduler-operator (119 of 862) -clusteroperator kube-scheduler (120 of 862) + +25-kube-controller-manager, 1 manifests +customresourcedefinition kubecontrollermanagers.operator.openshift.io (116 of 930) 0->17 - - + + 18 - -namespace openshift-cloud-controller-manager-operator (121 of 862) -namespace openshift-cloud-controller-manager (122 of 862) -configmap openshift-cloud-controller-manager-operator/cloud-controller-manager-images (123 of 862) -serviceaccount openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager (124 of 862) -clusterrole system:openshift:operator:cloud-controller-manager (125 of 862) -role openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager (126 of 862) -role openshift-config/cluster-cloud-controller-manager (127 of 862) -rolebinding openshift-config/cluster-cloud-controller-manager (128 of 862) -role openshift-config-managed/cluster-cloud-controller-manager (129 of 862) -rolebinding openshift-config-managed/cluster-cloud-controller-manager (130 of 862) -clusterrolebinding system:openshift:operator:cloud-controller-manager (131 of 862) -rolebinding openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager (132 of 862) -rolebinding openshift-cloud-controller-manager/cluster-cloud-controller-manager (133 of 862) -serviceaccount openshift-cloud-controller-manager/cloud-controller-manager (134 of 862) -rolebinding openshift-cloud-controller-manager/cloud-controller-manager (135 of 862) -role openshift-cloud-controller-manager/cloud-controller-manager (136 of 862) -rolebinding kube-system/cloud-controller-manager (137 of 862) -role kube-system/cloud-controller-manager (138 of 862) -clusterrole cloud-controller-manager (139 of 862) -clusterrolebinding cloud-controller-manager (140 of 862) -rolebinding kube-system/cloud-controller-manager:apiserver-authentication-reader (141 of 862) -serviceaccount openshift-cloud-controller-manager/cloud-node-manager (142 of 862) -clusterrole cloud-node-manager (143 of 862) -clusterrolebinding cloud-node-manager (144 of 862) -serviceaccount kube-system/cloud-controller-manager (145 of 862) -clusterrole openstack-cloud-controller-manager (146 of 862) -clusterrolebinding openstack-cloud-controller-manager (147 of 862) -service openshift-cloud-controller-manager-operator/cloud-controller-manager-operator (148 of 862) -configmap openshift-cloud-controller-manager-operator/kube-rbac-proxy (149 of 862) -deployment openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager (150 of 862) -deployment openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager-operator (151 of 862) -clusteroperator cloud-controller-manager (152 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-openstack-cloud-controller-manager (153 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-azure-cloud-controller-manager (154 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-ibm-cloud-controller-manager (155 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-powervs-cloud-controller-manager (156 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-gcp-ccm (157 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-vsphere-cloud-controller-manager (158 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-nutanix-cloud-controller-manager (159 of 862) + +25-kube-scheduler-operator, 8 manifests +namespace openshift-kube-scheduler-operator (117 of 930) +kubescheduler cluster (118 of 930) +service openshift-kube-scheduler-operator/metrics (119 of 930) +configmap openshift-kube-scheduler-operator/openshift-kube-scheduler-operator-config (120 of 930) +clusterrolebinding system:openshift:operator:cluster-kube-scheduler-operator (121 of 930) +serviceaccount openshift-kube-scheduler-operator/openshift-kube-scheduler-operator (122 of 930) +deployment openshift-kube-scheduler-operator/openshift-kube-scheduler-operator (123 of 930) +clusteroperator kube-scheduler (124 of 930) 0->18 - - + + 19 - -customresourcedefinition controlplanemachinesets.machine.openshift.io (160 of 862) -serviceaccount openshift-machine-api/control-plane-machine-set-operator (161 of 862) -role openshift-machine-api/control-plane-machine-set-operator (162 of 862) -clusterrole control-plane-machine-set-operator (163 of 862) -clusterrolebinding control-plane-machine-set-operator (164 of 862) -rolebinding openshift-machine-api/control-plane-machine-set-operator (165 of 862) -service openshift-machine-api/control-plane-machine-set-operator (166 of 862) -deployment openshift-machine-api/control-plane-machine-set-operator (167 of 862) -clusteroperator control-plane-machine-set (168 of 862) -validatingwebhookconfiguration controlplanemachineset.machine.openshift.io (169 of 862) + +25-kube-scheduler, 1 manifests +customresourcedefinition kubeschedulers.operator.openshift.io (125 of 930) 0->19 - - + + 20 - -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-aws (170 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-azure (171 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-openstack (172 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-gcp (173 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-ovirt (174 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-vsphere (175 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-ibmcloud (176 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-powervs (177 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-nutanix (178 of 862) -namespace openshift-machine-api (179 of 862) -configmap openshift-machine-api/machine-api-operator-images (180 of 862) -configmap openshift-machine-api/mao-trusted-ca (181 of 862) -customresourcedefinition machines.machine.openshift.io (182 of 862) -customresourcedefinition machinesets.machine.openshift.io (183 of 862) -customresourcedefinition machinehealthchecks.machine.openshift.io (184 of 862) -customresourcedefinition metal3remediations.infrastructure.cluster.x-k8s.io (185 of 862) -customresourcedefinition metal3remediationtemplates.infrastructure.cluster.x-k8s.io (186 of 862) -service openshift-machine-api/machine-api-operator-machine-webhook (187 of 862) -service openshift-machine-api/machine-api-operator-webhook (188 of 862) -serviceaccount openshift-machine-api/machine-api-operator (189 of 862) -serviceaccount openshift-machine-api/machine-api-controllers (190 of 862) -serviceaccount openshift-machine-api/machine-api-termination-handler (191 of 862) -role openshift-config/machine-api-controllers (192 of 862) -role openshift-config-managed/machine-api-controllers (193 of 862) -role openshift-machine-api/machine-api-controllers (194 of 862) -clusterrole machine-api-controllers (195 of 862) -role openshift-machine-api/machine-api-operator (196 of 862) -clusterrole machine-api-operator (197 of 862) -clusterrole machine-api-operator-ext-remediation (198 of 862) -clusterrolebinding machine-api-operator-ext-remediation (199 of 862) -clusterrolebinding machine-api-controllers (200 of 862) -rolebinding openshift-machine-api/machine-api-controllers (201 of 862) -rolebinding openshift-config/machine-api-controllers (202 of 862) -rolebinding openshift-config-managed/machine-api-controllers (203 of 862) -clusterrolebinding machine-api-operator (204 of 862) -rolebinding openshift-machine-api/machine-api-operator (205 of 862) -rolebinding openshift-machine-api/prometheus-k8s-machine-api-operator (206 of 862) -role openshift-machine-api/prometheus-k8s-machine-api-operator (207 of 862) -clusterrole machine-api-operator:cluster-reader (208 of 862) -securitycontextconstraints machine-api-termination-handler (209 of 862) -configmap openshift-machine-api/kube-rbac-proxy (210 of 862) -clusterrole machine-api-controllers-metal3-remediation-aggregation (211 of 862) -clusterrole machine-api-controllers-metal3-remediation (212 of 862) -clusterrolebinding machine-api-controllers-baremetal (213 of 862) -service openshift-machine-api/machine-api-operator (214 of 862) -service openshift-machine-api/machine-api-controllers (215 of 862) -deployment openshift-machine-api/machine-api-operator (216 of 862) -clusteroperator machine-api (217 of 862) -machinehealthcheck openshift-machine-api/machine-api-termination-handler (218 of 862) + +26-cloud-controller-manager-operator, 42 manifests +namespace openshift-cloud-controller-manager-operator (126 of 930) +namespace openshift-cloud-controller-manager (127 of 930) +configmap openshift-cloud-controller-manager-operator/cloud-controller-manager-images (128 of 930) +serviceaccount openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager (129 of 930) +clusterrole system:openshift:operator:cloud-controller-manager (130 of 930) +role openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager (131 of 930) +role openshift-config/cluster-cloud-controller-manager (132 of 930) +rolebinding openshift-config/cluster-cloud-controller-manager (133 of 930) +role openshift-config-managed/cluster-cloud-controller-manager (134 of 930) +role kube-system/cluster-cloud-controller-manager (135 of 930) +rolebinding openshift-config-managed/cluster-cloud-controller-manager (136 of 930) +clusterrolebinding system:openshift:operator:cloud-controller-manager (137 of 930) +rolebinding openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager (138 of 930) +rolebinding openshift-cloud-controller-manager/cluster-cloud-controller-manager (139 of 930) +rolebinding kube-system/cluster-cloud-controller-manager (140 of 930) +serviceaccount openshift-cloud-controller-manager/cloud-controller-manager (141 of 930) +rolebinding openshift-cloud-controller-manager/cloud-controller-manager (142 of 930) +role openshift-cloud-controller-manager/cloud-controller-manager (143 of 930) +rolebinding kube-system/cloud-controller-manager (144 of 930) +role kube-system/cloud-controller-manager (145 of 930) +clusterrole cloud-controller-manager (146 of 930) +clusterrolebinding cloud-controller-manager (147 of 930) +rolebinding kube-system/cloud-controller-manager:apiserver-authentication-reader (148 of 930) +serviceaccount openshift-cloud-controller-manager/cloud-node-manager (149 of 930) +clusterrole cloud-node-manager (150 of 930) +clusterrolebinding cloud-node-manager (151 of 930) +serviceaccount kube-system/cloud-controller-manager (152 of 930) +clusterrole openstack-cloud-controller-manager (153 of 930) +clusterrolebinding openstack-cloud-controller-manager (154 of 930) +service openshift-cloud-controller-manager-operator/cloud-controller-manager-operator (155 of 930) +configmap openshift-cloud-controller-manager-operator/kube-rbac-proxy (156 of 930) +networkpolicy openshift-cloud-controller-manager-operator/default-deny (157 of 930) +networkpolicy openshift-cloud-controller-manager/default-deny (158 of 930) +deployment openshift-cloud-controller-manager-operator/cluster-cloud-controller-manager-operator (159 of 930) +clusteroperator cloud-controller-manager (160 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-openstack-cloud-controller-manager (161 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-azure-cloud-controller-manager (162 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-ibm-cloud-controller-manager (163 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-powervs-cloud-controller-manager (164 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-gcp-ccm (165 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-vsphere-cloud-controller-manager (166 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-nutanix-cloud-controller-manager (167 of 930) 0->20 - - + + 21 - -customresourcedefinition openshiftapiservers.operator.openshift.io (219 of 862) + +30-cluster-api, 2 manifests +customresourcedefinition ipaddresses.ipam.cluster.x-k8s.io (168 of 930) +customresourcedefinition ipaddressclaims.ipam.cluster.x-k8s.io (169 of 930) 0->21 - - + + 22 - -customresourcedefinition baremetalhosts.metal3.io (220 of 862) -customresourcedefinition bmceventsubscriptions.metal3.io (221 of 862) -customresourcedefinition firmwareschemas.metal3.io (222 of 862) -customresourcedefinition hardwaredata.metal3.io (223 of 862) -customresourcedefinition hostfirmwaresettings.metal3.io (224 of 862) -customresourcedefinition preprovisioningimages.metal3.io (225 of 862) -configmap openshift-machine-api/cluster-baremetal-operator-images (226 of 862) -configmap openshift-machine-api/cbo-trusted-ca (227 of 862) -customresourcedefinition provisionings.metal3.io (228 of 862) -service openshift-machine-api/cluster-baremetal-operator-service (229 of 862) -service openshift-machine-api/cluster-baremetal-webhook-service (230 of 862) -serviceaccount openshift-machine-api/cluster-baremetal-operator (231 of 862) -configmap openshift-machine-api/baremetal-kube-rbac-proxy (232 of 862) -rolebinding openshift-machine-api/prometheus-k8s-cluster-baremetal-operator (233 of 862) -role openshift-machine-api/prometheus-k8s-cluster-baremetal-operator (234 of 862) -role openshift-machine-api/cluster-baremetal-operator (235 of 862) -clusterrole cluster-baremetal-operator (236 of 862) -rolebinding openshift-machine-api/cluster-baremetal-operator (237 of 862) -clusterrolebinding openshift-machine-api/cluster-baremetal-operator (238 of 862) -deployment openshift-machine-api/cluster-baremetal-operator (239 of 862) -clusteroperator baremetal (240 of 862) + +30-control-plane-machine-set-operator, 9 manifests +serviceaccount openshift-machine-api/control-plane-machine-set-operator (170 of 930) +role openshift-machine-api/control-plane-machine-set-operator (171 of 930) +clusterrole control-plane-machine-set-operator (172 of 930) +clusterrolebinding control-plane-machine-set-operator (173 of 930) +rolebinding openshift-machine-api/control-plane-machine-set-operator (174 of 930) +service openshift-machine-api/control-plane-machine-set-operator (175 of 930) +deployment openshift-machine-api/control-plane-machine-set-operator (176 of 930) +clusteroperator control-plane-machine-set (177 of 930) +validatingwebhookconfiguration controlplanemachineset.machine.openshift.io (178 of 930) 0->22 - - + + 23 - -customresourcedefinition kubestorageversionmigrators.operator.openshift.io (241 of 862) + +30-machine-api-operator, 48 manifests +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-aws (179 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-azure (180 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-openstack (181 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-gcp (182 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-vsphere (183 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-ibmcloud (184 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-powervs (185 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-machine-api-nutanix (186 of 930) +namespace openshift-machine-api (187 of 930) +configmap openshift-machine-api/machine-api-operator-images (188 of 930) +configmap openshift-machine-api/mao-trusted-ca (189 of 930) +customresourcedefinition machines.machine.openshift.io (190 of 930) +customresourcedefinition machinesets.machine.openshift.io (191 of 930) +customresourcedefinition machinehealthchecks.machine.openshift.io (192 of 930) +customresourcedefinition metal3remediations.infrastructure.cluster.x-k8s.io (193 of 930) +customresourcedefinition metal3remediationtemplates.infrastructure.cluster.x-k8s.io (194 of 930) +service openshift-machine-api/machine-api-operator-machine-webhook (195 of 930) +service openshift-machine-api/machine-api-operator-webhook (196 of 930) +serviceaccount openshift-machine-api/machine-api-operator (197 of 930) +serviceaccount openshift-machine-api/machine-api-controllers (198 of 930) +serviceaccount openshift-machine-api/machine-api-termination-handler (199 of 930) +role openshift-config/machine-api-controllers (200 of 930) +role openshift-config-managed/machine-api-controllers (201 of 930) +role openshift-machine-api/machine-api-controllers (202 of 930) +clusterrole machine-api-controllers (203 of 930) +role openshift-machine-api/machine-api-operator (204 of 930) +clusterrole machine-api-operator (205 of 930) +clusterrole machine-api-operator-ext-remediation (206 of 930) +clusterrolebinding machine-api-operator-ext-remediation (207 of 930) +clusterrolebinding machine-api-controllers (208 of 930) +rolebinding openshift-machine-api/machine-api-controllers (209 of 930) +rolebinding openshift-config/machine-api-controllers (210 of 930) +rolebinding openshift-config-managed/machine-api-controllers (211 of 930) +clusterrolebinding machine-api-operator (212 of 930) +rolebinding openshift-machine-api/machine-api-operator (213 of 930) +rolebinding openshift-machine-api/prometheus-k8s-machine-api-operator (214 of 930) +role openshift-machine-api/prometheus-k8s-machine-api-operator (215 of 930) +clusterrole machine-api-operator:cluster-reader (216 of 930) +securitycontextconstraints machine-api-termination-handler (217 of 930) +configmap openshift-machine-api/kube-rbac-proxy (218 of 930) +clusterrole machine-api-controllers-metal3-remediation-aggregation (219 of 930) +clusterrole machine-api-controllers-metal3-remediation (220 of 930) +clusterrolebinding machine-api-controllers-baremetal (221 of 930) +service openshift-machine-api/machine-api-operator (222 of 930) +service openshift-machine-api/machine-api-controllers (223 of 930) +deployment openshift-machine-api/machine-api-operator (224 of 930) +clusteroperator machine-api (225 of 930) +machinehealthcheck openshift-machine-api/machine-api-termination-handler (226 of 930) 0->23 - - + + 24 - -namespace openshift-cluster-storage-operator (242 of 862) + +30-openshift-apiserver, 1 manifests +customresourcedefinition openshiftapiservers.operator.openshift.io (227 of 930) 0->24 - - + + 25 - -clusterrole system:openshift:cloud-credential-operator:cluster-reader (243 of 862) -customresourcedefinition cloudcredentials.operator.openshift.io (244 of 862) -clusterrolebinding cloud-credential-operator-rolebinding (245 of 862) -clusterrole cloud-credential-operator-role (246 of 862) -rolebinding openshift-config-managed/cloud-credential-operator (247 of 862) -role openshift-config-managed/cloud-credential-operator-role (248 of 862) -cloudcredential cluster (249 of 862) -rolebinding openshift-cloud-credential-operator/cloud-credential-operator (250 of 862) -role openshift-cloud-credential-operator/cloud-credential-operator-role (251 of 862) -service openshift-cloud-credential-operator/controller-manager-service (252 of 862) -service openshift-cloud-credential-operator/cco-metrics (253 of 862) -configmap openshift-cloud-credential-operator/cco-trusted-ca (254 of 862) -serviceaccount openshift-cloud-credential-operator/cloud-credential-operator (255 of 862) -deployment openshift-cloud-credential-operator/cloud-credential-operator (256 of 862) -clusteroperator cloud-credential (257 of 862) -credentialsrequest openshift-cloud-credential-operator/cloud-credential-operator-gcp-ro-creds (258 of 862) -credentialsrequest openshift-cloud-credential-operator/cloud-credential-operator-iam-ro (259 of 862) + +31-cluster-baremetal-operator, 24 manifests +customresourcedefinition baremetalhosts.metal3.io (228 of 930) +customresourcedefinition bmceventsubscriptions.metal3.io (229 of 930) +customresourcedefinition dataimages.metal3.io (230 of 930) +customresourcedefinition firmwareschemas.metal3.io (231 of 930) +customresourcedefinition hardwaredata.metal3.io (232 of 930) +customresourcedefinition hostfirmwarecomponents.metal3.io (233 of 930) +customresourcedefinition hostfirmwaresettings.metal3.io (234 of 930) +customresourcedefinition hostupdatepolicies.metal3.io (235 of 930) +customresourcedefinition preprovisioningimages.metal3.io (236 of 930) +configmap openshift-machine-api/cluster-baremetal-operator-images (237 of 930) +configmap openshift-machine-api/cbo-trusted-ca (238 of 930) +customresourcedefinition provisionings.metal3.io (239 of 930) +service openshift-machine-api/cluster-baremetal-operator-service (240 of 930) +service openshift-machine-api/cluster-baremetal-webhook-service (241 of 930) +serviceaccount openshift-machine-api/cluster-baremetal-operator (242 of 930) +configmap openshift-machine-api/baremetal-kube-rbac-proxy (243 of 930) +rolebinding openshift-machine-api/prometheus-k8s-cluster-baremetal-operator (244 of 930) +role openshift-machine-api/prometheus-k8s-cluster-baremetal-operator (245 of 930) +role openshift-machine-api/cluster-baremetal-operator (246 of 930) +clusterrole cluster-baremetal-operator (247 of 930) +rolebinding openshift-machine-api/cluster-baremetal-operator (248 of 930) +clusterrolebinding openshift-machine-api/cluster-baremetal-operator (249 of 930) +deployment openshift-machine-api/cluster-baremetal-operator (250 of 930) +clusteroperator baremetal (251 of 930) 0->25 - - + + 26 - -namespace openshift-authentication-operator (260 of 862) -customresourcedefinition authentications.operator.openshift.io (261 of 862) -authentication cluster (262 of 862) -service openshift-authentication-operator/metrics (263 of 862) -configmap openshift-authentication-operator/authentication-operator-config (264 of 862) -configmap openshift-authentication-operator/service-ca-bundle (265 of 862) -configmap openshift-authentication-operator/trusted-ca-bundle (266 of 862) -clusterrolebinding system:openshift:operator:authentication (267 of 862) -serviceaccount openshift-authentication-operator/authentication-operator (268 of 862) -deployment openshift-authentication-operator/authentication-operator (269 of 862) -clusteroperator authentication (270 of 862) -flowschema openshift-oauth-apiserver-sar (271 of 862) -flowschema openshift-oauth-apiserver (272 of 862) -flowschema openshift-authentication-operator (273 of 862) -flowschema openshift-oauth-server (274 of 862) + +40-kube-storage-version-migrator, 1 manifests +customresourcedefinition kubestorageversionmigrators.operator.openshift.io (252 of 930) 0->26 - - + + 27 - -customresourcedefinition clusterautoscalers.autoscaling.openshift.io (275 of 862) -customresourcedefinition machineautoscalers.autoscaling.openshift.io (276 of 862) -clusterrole cluster-autoscaler-operator (277 of 862) -role openshift-machine-api/cluster-autoscaler-operator (278 of 862) -rolebinding openshift-machine-api/cluster-autoscaler-operator (279 of 862) -clusterrolebinding cluster-autoscaler-operator (280 of 862) -serviceaccount openshift-machine-api/cluster-autoscaler-operator (281 of 862) -serviceaccount openshift-machine-api/cluster-autoscaler (282 of 862) -clusterrole cluster-autoscaler (283 of 862) -role openshift-machine-api/cluster-autoscaler (284 of 862) -clusterrolebinding cluster-autoscaler (285 of 862) -rolebinding openshift-machine-api/cluster-autoscaler (286 of 862) -rolebinding openshift-machine-api/prometheus-k8s-cluster-autoscaler-operator (287 of 862) -role openshift-machine-api/prometheus-k8s-cluster-autoscaler-operator (288 of 862) -service openshift-machine-api/cluster-autoscaler-operator (289 of 862) -configmap openshift-machine-api/kube-rbac-proxy-cluster-autoscaler-operator (290 of 862) -servicemonitor openshift-machine-api/cluster-autoscaler-operator (291 of 862) -deployment openshift-machine-api/cluster-autoscaler-operator (292 of 862) -clusteroperator cluster-autoscaler (293 of 862) -clusterrole cluster-autoscaler-operator:cluster-reader (294 of 862) -configmap openshift-machine-api/cluster-autoscaler-operator-ca (295 of 862) -prometheusrule openshift-machine-api/cluster-autoscaler-operator-rules (296 of 862) + +49-cluster-storage-operator, 1 manifests +namespace openshift-cluster-storage-operator (253 of 930) 0->27 - - + + 28 - -customresourcedefinition csisnapshotcontrollers.operator.openshift.io (297 of 862) -csisnapshotcontroller cluster (298 of 862) -configmap openshift-cluster-storage-operator/csi-snapshot-controller-operator-config (299 of 862) -service openshift-cluster-storage-operator/csi-snapshot-controller-operator-metrics (300 of 862) -serviceaccount openshift-cluster-storage-operator/csi-snapshot-controller-operator (301 of 862) -clusterrole openshift-csi-snapshot-controller-runner (302 of 862) -clusterrolebinding openshift-csi-snapshot-controller-role (303 of 862) -role openshift-cluster-storage-operator/csi-snapshot-controller-leaderelection (304 of 862) -rolebinding openshift-cluster-storage-operator/csi-snapshot-controller-leaderelection (305 of 862) -rolebinding kube-system/csi-snapshot-controller-operator-authentication-reader (306 of 862) -clusterrole csi-snapshot-controller-operator-clusterrole (307 of 862) -role openshift-cluster-storage-operator/csi-snapshot-controller-operator-role (308 of 862) -clusterrole system:openshift:aggregate-snapshots-to-admin (309 of 862) -clusterrole system:openshift:aggregate-snapshots-to-view (310 of 862) -clusterrole system:openshift:aggregate-snapshots-to-basic-user (311 of 862) -clusterrole system:openshift:aggregate-snapshots-to-storage-admin (312 of 862) -clusterrolebinding csi-snapshot-controller-operator-clusterrole (313 of 862) -clusterrolebinding csi-snapshot-controller-runner-operator (314 of 862) -rolebinding openshift-cluster-storage-operator/csi-snapshot-controller-operator-role (315 of 862) -deployment openshift-cluster-storage-operator/csi-snapshot-controller-operator (316 of 862) -clusteroperator csi-snapshot-controller (317 of 862) + +50-authentication, 1 manifests +customresourcedefinition authentications.operator.openshift.io (254 of 930) 0->28 - - + + 29 - -customresourcedefinition configs.imageregistry.operator.openshift.io (318 of 862) -namespace openshift-image-registry (319 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-alibaba (320 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-azure (321 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-gcs (322 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-ibmcos (323 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-openstack (324 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-ibmcos-powervs (325 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-image-registry (326 of 862) -customresourcedefinition imagepruners.imageregistry.operator.openshift.io (327 of 862) -clusterrole cluster-image-registry-operator (328 of 862) -role openshift-image-registry/cluster-image-registry-operator (329 of 862) -clusterrolebinding default-account-cluster-image-registry-operator (330 of 862) -rolebinding openshift-image-registry/cluster-image-registry-operator (331 of 862) -serviceaccount openshift-image-registry/cluster-image-registry-operator (332 of 862) -configmap openshift-image-registry/trusted-ca (333 of 862) -role openshift-image-registry/node-ca (334 of 862) -rolebinding openshift-image-registry/node-ca (335 of 862) -serviceaccount openshift-image-registry/node-ca (336 of 862) -service openshift-image-registry/image-registry-operator (337 of 862) -deployment openshift-image-registry/cluster-image-registry-operator (338 of 862) -clusteroperator image-registry (339 of 862) -prometheusrule openshift-image-registry/imagestreams-rules (340 of 862) -prometheusrule openshift-image-registry/image-registry-rules (341 of 862) -prometheusrule openshift-image-registry/image-registry-operator-alerts (342 of 862) + +50-cloud-credential-operator, 24 manifests +clusterrole system:openshift:cloud-credential-operator:cluster-reader (255 of 930) +customresourcedefinition cloudcredentials.operator.openshift.io (256 of 930) +clusterrolebinding cloud-credential-operator-rolebinding (257 of 930) +clusterrole cloud-credential-operator-role (258 of 930) +rolebinding openshift-config-managed/cloud-credential-operator (259 of 930) +role openshift-config-managed/cloud-credential-operator-role (260 of 930) +rolebinding openshift-config/cloud-credential-operator (261 of 930) +role openshift-config/cloud-credential-operator-role (262 of 930) +cloudcredential cluster (263 of 930) +rolebinding openshift-cloud-credential-operator/cloud-credential-operator (264 of 930) +role openshift-cloud-credential-operator/cloud-credential-operator-role (265 of 930) +service openshift-cloud-credential-operator/controller-manager-service (266 of 930) +service openshift-cloud-credential-operator/cco-metrics (267 of 930) +configmap openshift-cloud-credential-operator/cco-trusted-ca (268 of 930) +networkpolicy openshift-cloud-credential-operator/allow-egress (269 of 930) +networkpolicy openshift-cloud-credential-operator/allow-ingress-metrics (270 of 930) +networkpolicy openshift-cloud-credential-operator/allow-ingress-pprof (271 of 930) +networkpolicy openshift-cloud-credential-operator/allow-ingress-webhook (272 of 930) +networkpolicy openshift-cloud-credential-operator/default-deny (273 of 930) +serviceaccount openshift-cloud-credential-operator/cloud-credential-operator (274 of 930) +deployment openshift-cloud-credential-operator/cloud-credential-operator (275 of 930) +clusteroperator cloud-credential (276 of 930) +credentialsrequest openshift-cloud-credential-operator/cloud-credential-operator-gcp-ro-creds (277 of 930) +credentialsrequest openshift-cloud-credential-operator/cloud-credential-operator-iam-ro (278 of 930) 0->29 - - + + 30 - -clusterrole openshift-ingress-operator (343 of 862) -customresourcedefinition dnsrecords.ingress.operator.openshift.io (344 of 862) -customresourcedefinition ingresscontrollers.operator.openshift.io (345 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-ingress (346 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-ingress-azure (347 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-ingress-gcp (348 of 862) -namespace openshift-ingress-operator (349 of 862) -clusterrolebinding openshift-ingress-operator (350 of 862) -rolebinding openshift-ingress-operator/ingress-operator (351 of 862) -rolebinding openshift-config/ingress-operator (352 of 862) -role openshift-ingress-operator/ingress-operator (353 of 862) -role openshift-config/ingress-operator (354 of 862) -serviceaccount openshift-ingress-operator/ingress-operator (355 of 862) -service openshift-ingress-operator/metrics (356 of 862) -configmap openshift-ingress-operator/trusted-ca (357 of 862) -deployment openshift-ingress-operator/ingress-operator (358 of 862) -clusteroperator ingress (359 of 862) + +50-cluster-authentication-operator, 14 manifests +namespace openshift-authentication-operator (279 of 930) +authentication cluster (280 of 930) +service openshift-authentication-operator/metrics (281 of 930) +configmap openshift-authentication-operator/authentication-operator-config (282 of 930) +configmap openshift-authentication-operator/service-ca-bundle (283 of 930) +configmap openshift-authentication-operator/trusted-ca-bundle (284 of 930) +clusterrolebinding system:openshift:operator:authentication (285 of 930) +serviceaccount openshift-authentication-operator/authentication-operator (286 of 930) +deployment openshift-authentication-operator/authentication-operator (287 of 930) +clusteroperator authentication (288 of 930) +flowschema openshift-oauth-apiserver-sar (289 of 930) +flowschema openshift-oauth-apiserver (290 of 930) +flowschema openshift-authentication-operator (291 of 930) +flowschema openshift-oauth-server (292 of 930) 0->30 - - + + 31 - -customresourcedefinition storageversionmigrations.migration.k8s.io (360 of 862) -customresourcedefinition storagestates.migration.k8s.io (361 of 862) -namespace openshift-kube-storage-version-migrator-operator (362 of 862) -configmap openshift-kube-storage-version-migrator-operator/config (363 of 862) -serviceaccount openshift-kube-storage-version-migrator-operator/kube-storage-version-migrator-operator (364 of 862) -clusterrolebinding system:openshift:operator:kube-storage-version-migrator-operator (365 of 862) -kubestorageversionmigrator cluster (366 of 862) -deployment openshift-kube-storage-version-migrator-operator/kube-storage-version-migrator-operator (367 of 862) -service openshift-kube-storage-version-migrator-operator/metrics (368 of 862) -clusteroperator kube-storage-version-migrator (369 of 862) + +50-cluster-autoscaler-operator, 20 manifests +customresourcedefinition clusterautoscalers.autoscaling.openshift.io (293 of 930) +customresourcedefinition machineautoscalers.autoscaling.openshift.io (294 of 930) +clusterrole cluster-autoscaler-operator (295 of 930) +role openshift-machine-api/cluster-autoscaler-operator (296 of 930) +rolebinding openshift-machine-api/cluster-autoscaler-operator (297 of 930) +clusterrolebinding cluster-autoscaler-operator (298 of 930) +serviceaccount openshift-machine-api/cluster-autoscaler-operator (299 of 930) +serviceaccount openshift-machine-api/cluster-autoscaler (300 of 930) +clusterrole cluster-autoscaler (301 of 930) +role openshift-machine-api/cluster-autoscaler (302 of 930) +clusterrolebinding cluster-autoscaler (303 of 930) +rolebinding openshift-machine-api/cluster-autoscaler (304 of 930) +rolebinding openshift-machine-api/prometheus-k8s-cluster-autoscaler-operator (305 of 930) +role openshift-machine-api/prometheus-k8s-cluster-autoscaler-operator (306 of 930) +service openshift-machine-api/cluster-autoscaler-operator (307 of 930) +configmap openshift-machine-api/kube-rbac-proxy-cluster-autoscaler-operator (308 of 930) +servicemonitor openshift-machine-api/cluster-autoscaler-operator (309 of 930) +deployment openshift-machine-api/cluster-autoscaler-operator (310 of 930) +clusteroperator cluster-autoscaler (311 of 930) +clusterrole cluster-autoscaler-operator:cluster-reader (312 of 930) 0->31 - - + + 32 - -namespace openshift-cluster-machine-approver (370 of 862) -serviceaccount openshift-cluster-machine-approver/machine-approver-sa (371 of 862) -role openshift-cluster-machine-approver/machine-approver (372 of 862) -rolebinding openshift-cluster-machine-approver/machine-approver (373 of 862) -role openshift-config-managed/machine-approver (374 of 862) -rolebinding openshift-config-managed/machine-approver (375 of 862) -clusterrole system:openshift:controller:machine-approver (376 of 862) -clusterrolebinding system:openshift:controller:machine-approver (377 of 862) -configmap openshift-cluster-machine-approver/kube-rbac-proxy (378 of 862) -service openshift-cluster-machine-approver/machine-approver (379 of 862) -deployment openshift-cluster-machine-approver/machine-approver (380 of 862) -clusteroperator machine-approver (381 of 862) + +50-cluster-csi-snapshot-controller-operator, 21 manifests +customresourcedefinition csisnapshotcontrollers.operator.openshift.io (313 of 930) +csisnapshotcontroller cluster (314 of 930) +configmap openshift-cluster-storage-operator/csi-snapshot-controller-operator-config (315 of 930) +service openshift-cluster-storage-operator/csi-snapshot-controller-operator-metrics (316 of 930) +serviceaccount openshift-cluster-storage-operator/csi-snapshot-controller-operator (317 of 930) +clusterrole openshift-csi-snapshot-controller-runner (318 of 930) +clusterrolebinding openshift-csi-snapshot-controller-role (319 of 930) +role openshift-cluster-storage-operator/csi-snapshot-controller-leaderelection (320 of 930) +rolebinding openshift-cluster-storage-operator/csi-snapshot-controller-leaderelection (321 of 930) +rolebinding kube-system/csi-snapshot-controller-operator-authentication-reader (322 of 930) +clusterrole csi-snapshot-controller-operator-clusterrole (323 of 930) +role openshift-cluster-storage-operator/csi-snapshot-controller-operator-role (324 of 930) +clusterrole system:openshift:aggregate-snapshots-to-admin (325 of 930) +clusterrole system:openshift:aggregate-snapshots-to-view (326 of 930) +clusterrole system:openshift:aggregate-snapshots-to-basic-user (327 of 930) +clusterrole system:openshift:aggregate-snapshots-to-storage-admin (328 of 930) +clusterrolebinding csi-snapshot-controller-operator-clusterrole (329 of 930) +clusterrolebinding csi-snapshot-controller-runner-operator (330 of 930) +rolebinding openshift-cluster-storage-operator/csi-snapshot-controller-operator-role (331 of 930) +deployment openshift-cluster-storage-operator/csi-snapshot-controller-operator (332 of 930) +clusteroperator csi-snapshot-controller (333 of 930) 0->32 - - + + 33 - -customresourcedefinition alertingrules.monitoring.openshift.io (382 of 862) -customresourcedefinition alertmanagerconfigs.monitoring.coreos.com (383 of 862) -customresourcedefinition alertmanagers.monitoring.coreos.com (384 of 862) -customresourcedefinition alertrelabelconfigs.monitoring.openshift.io (385 of 862) -customresourcedefinition podmonitors.monitoring.coreos.com (386 of 862) -customresourcedefinition probes.monitoring.coreos.com (387 of 862) -customresourcedefinition prometheuses.monitoring.coreos.com (388 of 862) -customresourcedefinition prometheusrules.monitoring.coreos.com (389 of 862) -customresourcedefinition servicemonitors.monitoring.coreos.com (390 of 862) -customresourcedefinition thanosrulers.monitoring.coreos.com (391 of 862) -namespace openshift-monitoring (392 of 862) -namespace openshift-user-workload-monitoring (393 of 862) -role openshift-monitoring/cluster-monitoring-operator-alert-customization (394 of 862) -clusterrole cluster-monitoring-operator-namespaced (395 of 862) -clusterrole cluster-monitoring-operator (396 of 862) -serviceaccount openshift-monitoring/cluster-monitoring-operator (397 of 862) -clusterrolebinding cluster-monitoring-operator (398 of 862) -rolebinding openshift-monitoring/cluster-monitoring-operator (399 of 862) -rolebinding openshift-user-workload-monitoring/cluster-monitoring-operator (400 of 862) -rolebinding openshift-monitoring/cluster-monitoring-operator-alert-customization (401 of 862) -service openshift-monitoring/cluster-monitoring-operator (402 of 862) -configmap openshift-monitoring/telemetry-config (403 of 862) -deployment openshift-monitoring/cluster-monitoring-operator (404 of 862) -clusteroperator monitoring (405 of 862) + +50-cluster-image-registry-operator, 24 manifests +customresourcedefinition configs.imageregistry.operator.openshift.io (334 of 930) +namespace openshift-image-registry (335 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-azure (336 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-gcs (337 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-ibmcos (338 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-openstack (339 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-image-registry-ibmcos-powervs (340 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-image-registry (341 of 930) +customresourcedefinition imagepruners.imageregistry.operator.openshift.io (342 of 930) +clusterrole cluster-image-registry-operator (343 of 930) +role openshift-image-registry/cluster-image-registry-operator (344 of 930) +clusterrolebinding default-account-cluster-image-registry-operator (345 of 930) +rolebinding openshift-image-registry/cluster-image-registry-operator (346 of 930) +serviceaccount openshift-image-registry/cluster-image-registry-operator (347 of 930) +configmap openshift-image-registry/trusted-ca (348 of 930) +role openshift-image-registry/node-ca (349 of 930) +rolebinding openshift-image-registry/node-ca (350 of 930) +serviceaccount openshift-image-registry/node-ca (351 of 930) +service openshift-image-registry/image-registry-operator (352 of 930) +deployment openshift-image-registry/cluster-image-registry-operator (353 of 930) +clusteroperator image-registry (354 of 930) +prometheusrule openshift-image-registry/imagestreams-rules (355 of 930) +prometheusrule openshift-image-registry/image-registry-rules (356 of 930) +prometheusrule openshift-image-registry/image-registry-operator-alerts (357 of 930) 0->33 - - + + 34 - -namespace openshift-cloud-network-config-controller (406 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-gcp (407 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-aws (408 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-azure (409 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-openstack (410 of 862) -service openshift-network-operator/metrics (411 of 862) -role openshift-network-operator/prometheus-k8s (412 of 862) -rolebinding openshift-network-operator/prometheus-k8s (413 of 862) -servicemonitor openshift-network-operator/network-operator (414 of 862) + +50-cluster-ingress-operator, 19 manifests +clusterrole openshift-ingress-operator (358 of 930) +customresourcedefinition dnsrecords.ingress.operator.openshift.io (359 of 930) +customresourcedefinition ingresscontrollers.operator.openshift.io (360 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-ingress (361 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-ingress-azure (362 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-ingress-gcp (363 of 930) +namespace openshift-ingress-operator (364 of 930) +clusterrolebinding openshift-ingress-operator (365 of 930) +rolebinding openshift-ingress-operator/ingress-operator (366 of 930) +rolebinding openshift-config/ingress-operator (367 of 930) +role openshift-ingress-operator/ingress-operator (368 of 930) +role openshift-config/ingress-operator (369 of 930) +serviceaccount openshift-ingress-operator/ingress-operator (370 of 930) +service openshift-ingress-operator/metrics (371 of 930) +configmap openshift-ingress-operator/trusted-ca (372 of 930) +validatingadmissionpolicybinding openshift-ingress-operator-gatewayapi-crd-admission (373 of 930) +validatingadmissionpolicy openshift-ingress-operator-gatewayapi-crd-admission (374 of 930) +deployment openshift-ingress-operator/ingress-operator (375 of 930) +clusteroperator ingress (376 of 930) 0->34 - - + + 35 - -namespace openshift-cluster-node-tuning-operator (415 of 862) -customresourcedefinition performanceprofiles.performance.openshift.io (416 of 862) -customresourcedefinition profiles.tuned.openshift.io (417 of 862) -customresourcedefinition tuneds.tuned.openshift.io (418 of 862) -configmap openshift-cluster-node-tuning-operator/trusted-ca (419 of 862) -service openshift-cluster-node-tuning-operator/node-tuning-operator (420 of 862) -role openshift-cluster-node-tuning-operator/prometheus-k8s (421 of 862) -rolebinding openshift-cluster-node-tuning-operator/prometheus-k8s (422 of 862) -servicemonitor openshift-cluster-node-tuning-operator/node-tuning-operator (423 of 862) -prometheusrule openshift-cluster-node-tuning-operator/node-tuning-operator (424 of 862) -serviceaccount openshift-cluster-node-tuning-operator/cluster-node-tuning-operator (425 of 862) -clusterrole cluster-node-tuning-operator (426 of 862) -clusterrolebinding cluster-node-tuning-operator (427 of 862) -serviceaccount openshift-cluster-node-tuning-operator/tuned (428 of 862) -clusterrole cluster-node-tuning:tuned (429 of 862) -clusterrolebinding cluster-node-tuning:tuned (430 of 862) -service openshift-cluster-node-tuning-operator/performance-addon-operator-service (431 of 862) -validatingwebhookconfiguration performance-addon-operator (432 of 862) -deployment openshift-cluster-node-tuning-operator/cluster-node-tuning-operator (433 of 862) -clusteroperator node-tuning (434 of 862) + +50-cluster-kube-storage-version-migrator-operator, 10 manifests +customresourcedefinition storageversionmigrations.migration.k8s.io (377 of 930) +customresourcedefinition storagestates.migration.k8s.io (378 of 930) +namespace openshift-kube-storage-version-migrator-operator (379 of 930) +configmap openshift-kube-storage-version-migrator-operator/config (380 of 930) +serviceaccount openshift-kube-storage-version-migrator-operator/kube-storage-version-migrator-operator (381 of 930) +clusterrolebinding system:openshift:operator:kube-storage-version-migrator-operator (382 of 930) +kubestorageversionmigrator cluster (383 of 930) +deployment openshift-kube-storage-version-migrator-operator/kube-storage-version-migrator-operator (384 of 930) +service openshift-kube-storage-version-migrator-operator/metrics (385 of 930) +clusteroperator kube-storage-version-migrator (386 of 930) 0->35 - - + + 36 - -namespace openshift-apiserver-operator (435 of 862) -openshiftapiserver cluster (436 of 862) -configmap openshift-apiserver-operator/openshift-apiserver-operator-config (437 of 862) -configmap openshift-apiserver-operator/trusted-ca-bundle (438 of 862) -clusterrolebinding system:openshift:operator:openshift-apiserver-operator (439 of 862) -serviceaccount openshift-apiserver-operator/openshift-apiserver-operator (440 of 862) -service openshift-apiserver-operator/metrics (441 of 862) -deployment openshift-apiserver-operator/openshift-apiserver-operator (442 of 862) -clusteroperator openshift-apiserver (443 of 862) -flowschema openshift-apiserver-sar (444 of 862) -flowschema openshift-apiserver (445 of 862) -flowschema openshift-apiserver-operator (446 of 862) + +50-cluster-machine-approver, 12 manifests +namespace openshift-cluster-machine-approver (387 of 930) +serviceaccount openshift-cluster-machine-approver/machine-approver-sa (388 of 930) +role openshift-cluster-machine-approver/machine-approver (389 of 930) +rolebinding openshift-cluster-machine-approver/machine-approver (390 of 930) +role openshift-config-managed/machine-approver (391 of 930) +rolebinding openshift-config-managed/machine-approver (392 of 930) +clusterrole system:openshift:controller:machine-approver (393 of 930) +clusterrolebinding system:openshift:controller:machine-approver (394 of 930) +configmap openshift-cluster-machine-approver/kube-rbac-proxy (395 of 930) +service openshift-cluster-machine-approver/machine-approver (396 of 930) +deployment openshift-cluster-machine-approver/machine-approver (397 of 930) +clusteroperator machine-approver (398 of 930) 0->36 - - + + 37 - -namespace openshift-controller-manager-operator (447 of 862) -customresourcedefinition openshiftcontrollermanagers.operator.openshift.io (448 of 862) -openshiftcontrollermanager cluster (449 of 862) -configmap openshift-controller-manager-operator/openshift-controller-manager-operator-config (450 of 862) -service openshift-controller-manager-operator/metrics (451 of 862) -configmap openshift-controller-manager-operator/openshift-controller-manager-images (452 of 862) -clusterrolebinding system:openshift:operator:openshift-controller-manager-operator (453 of 862) -serviceaccount openshift-controller-manager-operator/openshift-controller-manager-operator (454 of 862) -deployment openshift-controller-manager-operator/openshift-controller-manager-operator (455 of 862) -flowschema openshift-controller-manager (456 of 862) -clusteroperator openshift-controller-manager (457 of 862) + +50-cluster-monitoring-operator, 25 manifests +customresourcedefinition alertingrules.monitoring.openshift.io (399 of 930) +customresourcedefinition alertmanagerconfigs.monitoring.coreos.com (400 of 930) +customresourcedefinition alertmanagers.monitoring.coreos.com (401 of 930) +customresourcedefinition alertrelabelconfigs.monitoring.openshift.io (402 of 930) +customresourcedefinition podmonitors.monitoring.coreos.com (403 of 930) +customresourcedefinition probes.monitoring.coreos.com (404 of 930) +customresourcedefinition prometheuses.monitoring.coreos.com (405 of 930) +customresourcedefinition prometheusrules.monitoring.coreos.com (406 of 930) +customresourcedefinition servicemonitors.monitoring.coreos.com (407 of 930) +customresourcedefinition thanosrulers.monitoring.coreos.com (408 of 930) +namespace openshift-monitoring (409 of 930) +namespace openshift-user-workload-monitoring (410 of 930) +role openshift-monitoring/cluster-monitoring-operator-alert-customization (411 of 930) +clusterrole cluster-monitoring-operator-namespaced (412 of 930) +clusterrole cluster-monitoring-operator (413 of 930) +serviceaccount openshift-monitoring/cluster-monitoring-operator (414 of 930) +clusterrolebinding cluster-monitoring-operator (415 of 930) +rolebinding openshift-monitoring/cluster-monitoring-operator (416 of 930) +rolebinding openshift-user-workload-monitoring/cluster-monitoring-operator (417 of 930) +rolebinding openshift-monitoring/cluster-monitoring-operator-alert-customization (418 of 930) +service openshift-monitoring/cluster-monitoring-operator (419 of 930) +configmap openshift-monitoring/telemetry-config (420 of 930) +deployment openshift-monitoring/cluster-monitoring-operator (421 of 930) +clusteroperator monitoring (422 of 930) +validatingwebhookconfiguration monitoringconfigmaps.openshift.io (423 of 930) 0->37 - - + + 38 - -customresourcedefinition configs.samples.operator.openshift.io (458 of 862) -namespace openshift-cluster-samples-operator (459 of 862) -prometheusrule openshift-cluster-samples-operator/samples-operator-alerts (460 of 862) -serviceaccount openshift-cluster-samples-operator/cluster-samples-operator (461 of 862) -clusterrolebinding cluster-samples-operator-imageconfig-reader (462 of 862) -clusterrole cluster-samples-operator-imageconfig-reader (463 of 862) -clusterrolebinding cluster-samples-operator-proxy-reader (464 of 862) -clusterrole cluster-samples-operator-proxy-reader (465 of 862) -role openshift-cluster-samples-operator/cluster-samples-operator (466 of 862) -clusterrole cluster-samples-operator (467 of 862) -clusterrole system:openshift:cluster-samples-operator:cluster-reader (468 of 862) -rolebinding openshift-cluster-samples-operator/cluster-samples-operator (469 of 862) -clusterrolebinding cluster-samples-operator (470 of 862) -rolebinding openshift/cluster-samples-operator-openshift-edit (471 of 862) -role openshift-config/coreos-pull-secret-reader (472 of 862) -rolebinding openshift-config/cluster-samples-operator-openshift-config-secret-reader (473 of 862) -service openshift-cluster-samples-operator/metrics (474 of 862) -deployment openshift-cluster-samples-operator/cluster-samples-operator (475 of 862) -servicemonitor openshift-cluster-samples-operator/cluster-samples-operator (476 of 862) -clusteroperator openshift-samples (477 of 862) -imagestream openshift/cli (478 of 862) -imagestream openshift/cli-artifacts (479 of 862) -imagestream openshift/installer (480 of 862) -imagestream openshift/installer-artifacts (481 of 862) -imagestream openshift/tests (482 of 862) -imagestream openshift/tools (483 of 862) -imagestream openshift/must-gather (484 of 862) -imagestream openshift/oauth-proxy (485 of 862) -imagestream openshift/hello-openshift (486 of 862) -imagestream openshift/network-tools (487 of 862) -role openshift-cluster-samples-operator/prometheus-k8s (488 of 862) -rolebinding openshift-cluster-samples-operator/prometheus-k8s (489 of 862) + +50-cluster-network-operator, 9 manifests +namespace openshift-cloud-network-config-controller (424 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-gcp (425 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-aws (426 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-azure (427 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-cloud-network-config-controller-openstack (428 of 930) +service openshift-network-operator/metrics (429 of 930) +role openshift-network-operator/prometheus-k8s (430 of 930) +rolebinding openshift-network-operator/prometheus-k8s (431 of 930) +servicemonitor openshift-network-operator/network-operator (432 of 930) 0->38 - - + + 39 - -namespace openshift-cluster-csi-drivers (490 of 862) -credentialsrequest openshift-cloud-credential-operator/alibaba-disk-csi-driver-operator (491 of 862) -credentialsrequest openshift-cloud-credential-operator/aws-ebs-csi-driver-operator (492 of 862) -credentialsrequest openshift-cloud-credential-operator/azure-disk-csi-driver-operator (493 of 862) -credentialsrequest openshift-cloud-credential-operator/azure-file-csi-driver-operator (494 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-cluster-csi-drivers (495 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-gcp-pd-csi-driver-operator (496 of 862) -credentialsrequest openshift-cloud-credential-operator/ibm-vpc-block-csi-driver-operator (497 of 862) -credentialsrequest openshift-cloud-credential-operator/manila-csi-driver-operator (498 of 862) -credentialsrequest openshift-cloud-credential-operator/ovirt-csi-driver-operator (499 of 862) -credentialsrequest openshift-cloud-credential-operator/ibm-powervs-block-csi-driver-operator (500 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-vmware-vsphere-csi-driver-operator (501 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-vsphere-problem-detector (502 of 862) -customresourcedefinition clustercsidrivers.operator.openshift.io (503 of 862) -customresourcedefinition storages.operator.openshift.io (504 of 862) -storage cluster (505 of 862) -serviceaccount openshift-cluster-storage-operator/cluster-storage-operator (506 of 862) -clusterrolebinding cluster-storage-operator-role (507 of 862) -service openshift-cluster-storage-operator/cluster-storage-operator-metrics (508 of 862) -clusterrole openshift-csi-provisioner-configmap-and-secret-reader-role (509 of 862) -clusterrole openshift-csi-provisioner-volumeattachment-reader-role (510 of 862) -clusterrole openshift-csi-provisioner-volumesnapshot-reader-role (511 of 862) -clusterrole openshift-csi-resizer-infrastructure-reader-role (512 of 862) -clusterrole openshift-csi-resizer-storageclass-reader-role (513 of 862) -clusterrole openshift-csi-main-attacher-role (514 of 862) -clusterrole openshift-csi-main-provisioner-role (515 of 862) -clusterrole openshift-csi-main-resizer-role (516 of 862) -clusterrole openshift-csi-main-snapshotter-role (517 of 862) -deployment openshift-cluster-storage-operator/cluster-storage-operator (518 of 862) -clusteroperator storage (519 of 862) -prometheusrule openshift-cluster-storage-operator/prometheus (520 of 862) + +50-cluster-node-tuning-operator, 20 manifests +namespace openshift-cluster-node-tuning-operator (433 of 930) +customresourcedefinition performanceprofiles.performance.openshift.io (434 of 930) +customresourcedefinition profiles.tuned.openshift.io (435 of 930) +customresourcedefinition tuneds.tuned.openshift.io (436 of 930) +configmap openshift-cluster-node-tuning-operator/trusted-ca (437 of 930) +service openshift-cluster-node-tuning-operator/node-tuning-operator (438 of 930) +role openshift-cluster-node-tuning-operator/prometheus-k8s (439 of 930) +rolebinding openshift-cluster-node-tuning-operator/prometheus-k8s (440 of 930) +servicemonitor openshift-cluster-node-tuning-operator/node-tuning-operator (441 of 930) +prometheusrule openshift-cluster-node-tuning-operator/node-tuning-operator (442 of 930) +serviceaccount openshift-cluster-node-tuning-operator/cluster-node-tuning-operator (443 of 930) +clusterrole cluster-node-tuning-operator (444 of 930) +clusterrolebinding cluster-node-tuning-operator (445 of 930) +serviceaccount openshift-cluster-node-tuning-operator/tuned (446 of 930) +clusterrole cluster-node-tuning:tuned (447 of 930) +clusterrolebinding cluster-node-tuning:tuned (448 of 930) +service openshift-cluster-node-tuning-operator/performance-addon-operator-service (449 of 930) +validatingwebhookconfiguration performance-addon-operator (450 of 930) +deployment openshift-cluster-node-tuning-operator/cluster-node-tuning-operator (451 of 930) +clusteroperator node-tuning (452 of 930) 0->39 - - + + 40 - -priorityclass openshift-user-critical (521 of 862) + +50-cluster-openshift-apiserver-operator, 12 manifests +namespace openshift-apiserver-operator (453 of 930) +openshiftapiserver cluster (454 of 930) +configmap openshift-apiserver-operator/openshift-apiserver-operator-config (455 of 930) +configmap openshift-apiserver-operator/trusted-ca-bundle (456 of 930) +clusterrolebinding system:openshift:operator:openshift-apiserver-operator (457 of 930) +serviceaccount openshift-apiserver-operator/openshift-apiserver-operator (458 of 930) +service openshift-apiserver-operator/metrics (459 of 930) +deployment openshift-apiserver-operator/openshift-apiserver-operator (460 of 930) +clusteroperator openshift-apiserver (461 of 930) +flowschema openshift-apiserver-sar (462 of 930) +flowschema openshift-apiserver (463 of 930) +flowschema openshift-apiserver-operator (464 of 930) 0->40 - - + + 41 - -customresourcedefinition consoles.operator.openshift.io (522 of 862) -customresourcedefinition consoleclidownloads.console.openshift.io (523 of 862) -customresourcedefinition consoleexternalloglinks.console.openshift.io (524 of 862) -customresourcedefinition consolelinks.console.openshift.io (525 of 862) -customresourcedefinition consolenotifications.console.openshift.io (526 of 862) -customresourcedefinition consolequickstarts.console.openshift.io (527 of 862) -customresourcedefinition consolesamples.console.openshift.io (528 of 862) -customresourcedefinition consoleyamlsamples.console.openshift.io (529 of 862) -customresourcedefinition helmchartrepositories.helm.openshift.io (530 of 862) -customresourcedefinition projecthelmchartrepositories.helm.openshift.io (531 of 862) -helmchartrepository openshift-helm-charts (532 of 862) -oauthclient console (533 of 862) -console cluster (534 of 862) -namespace openshift-console (535 of 862) -namespace openshift-console-operator (536 of 862) -namespace openshift-console-user-settings (537 of 862) -clusterrole console-extensions-reader (538 of 862) -clusterrole console-operator (539 of 862) -clusterrole console (540 of 862) -clusterrole helm-chartrepos-viewer (541 of 862) -clusterrole project-helm-chartrepository-editor (542 of 862) -role openshift-console/console-operator (543 of 862) -role openshift-config-managed/console-operator (544 of 862) -role openshift-config-managed/console-public (545 of 862) -role openshift-config-managed/console-configmap-reader (546 of 862) -role openshift-config/console-operator (547 of 862) -role openshift-console-user-settings/console-user-settings-admin (548 of 862) -rolebinding openshift-console-user-settings/console-user-settings-admin (549 of 862) -role openshift-console-operator/console-operator (550 of 862) -clusterrolebinding console-operator (551 of 862) -clusterrolebinding console-extensions-reader (552 of 862) -clusterrolebinding console-operator-auth-delegator (553 of 862) -clusterrolebinding console (554 of 862) -clusterrolebinding helm-chartrepos-view (555 of 862) -clusterrolebinding console-auth-delegator (556 of 862) -rolebinding openshift-console/console-operator (557 of 862) -rolebinding openshift-console-operator/console-operator (558 of 862) -rolebinding openshift-config-managed/console-operator (559 of 862) -rolebinding openshift-config-managed/console-public (560 of 862) -rolebinding openshift-config/console-operator (561 of 862) -rolebinding kube-system/console-operator (562 of 862) -rolebinding openshift-config-managed/console-configmap-reader (563 of 862) -rolebinding kube-system/console (564 of 862) -configmap openshift-console-operator/console-operator-config (565 of 862) -service openshift-console-operator/metrics (566 of 862) -service openshift-console-operator/webhook (567 of 862) -serviceaccount openshift-console-operator/console-operator (568 of 862) -serviceaccount openshift-console/console (569 of 862) -consoleclidownload helm-download-links (570 of 862) -deployment openshift-console-operator/console-operator (571 of 862) -customresourcedefinition consoleplugins.console.openshift.io (572 of 862) -clusteroperator console (573 of 862) -consolequickstart add-healthchecks (574 of 862) -prometheusrule openshift-console-operator/cluster-monitoring-prometheus-rules (575 of 862) -consolequickstart install-cryostat (576 of 862) -consolequickstart explore-pipelines (577 of 862) -consolequickstart host-inventory (578 of 862) -consolequickstart install-helmchartrepo-ns (579 of 862) -consolequickstart install-multicluster-engine (580 of 862) -consolequickstart odf-install-tour (581 of 862) -consolequickstart install-serverless (582 of 862) -consolequickstart janus-idp-installation-via-helm (583 of 862) -consolequickstart janus-idp-installation-via-operator (584 of 862) -consolequickstart jboss-eap7-with-helm (585 of 862) -consolequickstart manage-helm-repos (586 of 862) -consolequickstart monitor-sampleapp (587 of 862) -consolequickstart node-with-s2i (588 of 862) -consolequickstart ocs-install-tour (589 of 862) -consolequickstart quarkus-with-helm (590 of 862) -consolequickstart quarkus-with-s2i (591 of 862) -consolequickstart rhdh-installation-via-helm (592 of 862) -consolequickstart rhdh-installation-via-operator (593 of 862) -consolequickstart sample-application (594 of 862) -consolequickstart spring-with-s2i (595 of 862) + +50-cluster-openshift-controller-manager-operator, 10 manifests +namespace openshift-controller-manager-operator (465 of 930) +openshiftcontrollermanager cluster (466 of 930) +configmap openshift-controller-manager-operator/openshift-controller-manager-operator-config (467 of 930) +service openshift-controller-manager-operator/metrics (468 of 930) +configmap openshift-controller-manager-operator/openshift-controller-manager-images (469 of 930) +clusterrolebinding system:openshift:operator:openshift-controller-manager-operator (470 of 930) +serviceaccount openshift-controller-manager-operator/openshift-controller-manager-operator (471 of 930) +deployment openshift-controller-manager-operator/openshift-controller-manager-operator (472 of 930) +flowschema openshift-controller-manager (473 of 930) +clusteroperator openshift-controller-manager (474 of 930) 0->41 - - + + 42 - -imagestream openshift/driver-toolkit (596 of 862) + +50-cluster-samples-operator, 31 manifests +customresourcedefinition configs.samples.operator.openshift.io (475 of 930) +namespace openshift-cluster-samples-operator (476 of 930) +prometheusrule openshift-cluster-samples-operator/samples-operator-alerts (477 of 930) +serviceaccount openshift-cluster-samples-operator/cluster-samples-operator (478 of 930) +clusterrolebinding cluster-samples-operator-imageconfig-reader (479 of 930) +clusterrole cluster-samples-operator-imageconfig-reader (480 of 930) +clusterrolebinding cluster-samples-operator-proxy-reader (481 of 930) +clusterrole cluster-samples-operator-proxy-reader (482 of 930) +role openshift-cluster-samples-operator/cluster-samples-operator (483 of 930) +clusterrole cluster-samples-operator (484 of 930) +clusterrole system:openshift:cluster-samples-operator:cluster-reader (485 of 930) +rolebinding openshift-cluster-samples-operator/cluster-samples-operator (486 of 930) +clusterrolebinding cluster-samples-operator (487 of 930) +rolebinding openshift/cluster-samples-operator-openshift-edit (488 of 930) +role openshift-config/coreos-pull-secret-reader (489 of 930) +rolebinding openshift-config/cluster-samples-operator-openshift-config-secret-reader (490 of 930) +service openshift-cluster-samples-operator/metrics (491 of 930) +deployment openshift-cluster-samples-operator/cluster-samples-operator (492 of 930) +servicemonitor openshift-cluster-samples-operator/cluster-samples-operator (493 of 930) +clusteroperator openshift-samples (494 of 930) +imagestream openshift/cli (495 of 930) +imagestream openshift/cli-artifacts (496 of 930) +imagestream openshift/installer (497 of 930) +imagestream openshift/installer-artifacts (498 of 930) +imagestream openshift/tests (499 of 930) +imagestream openshift/tools (500 of 930) +imagestream openshift/must-gather (501 of 930) +imagestream openshift/oauth-proxy (502 of 930) +imagestream openshift/network-tools (503 of 930) +role openshift-cluster-samples-operator/prometheus-k8s (504 of 930) +rolebinding openshift-cluster-samples-operator/prometheus-k8s (505 of 930) 0->42 - - + + 43 - -namespace openshift-insights (597 of 862) -clusterrolebinding insights-operator-auth (598 of 862) -rolebinding kube-system/insights-operator-auth (599 of 862) -clusterrole insights-operator (600 of 862) -rolebinding openshift-monitoring/insights-operator-alertmanager (601 of 862) -clusterrolebinding insights-operator (602 of 862) -clusterrole insights-operator-gather (603 of 862) -clusterrolebinding insights-operator-gather (604 of 862) -clusterrolebinding insights-operator-gather-reader (605 of 862) -role openshift-config/insights-operator (606 of 862) -rolebinding openshift-config/insights-operator (607 of 862) -role openshift-insights/insights-operator (608 of 862) -rolebinding openshift-insights/insights-operator (609 of 862) -role openshift-insights/insights-operator-obfuscation-secret (610 of 862) -rolebinding openshift-insights/insights-operator-obfuscation-secret (611 of 862) -role openshift-config-managed/insights-operator-etc-pki-entitlement (612 of 862) -rolebinding openshift-config-managed/insights-operator-etc-pki-entitlement (613 of 862) -customresourcedefinition insightsoperators.operator.openshift.io (614 of 862) -serviceaccount openshift-insights/operator (615 of 862) -serviceaccount openshift-insights/gather (616 of 862) -insightsoperator cluster (617 of 862) -rolebinding openshift-insights/prometheus-k8s (618 of 862) -configmap openshift-insights/trusted-ca-bundle (619 of 862) -configmap openshift-insights/service-ca-bundle (620 of 862) -role openshift-insights/prometheus-k8s (621 of 862) -deployment openshift-insights/insights-operator (622 of 862) -service openshift-insights/metrics (623 of 862) -clusteroperator insights (624 of 862) -servicemonitor openshift-insights/insights-operator (625 of 862) + +50-cluster-storage-operator, 40 manifests +namespace openshift-cluster-csi-drivers (506 of 930) +credentialsrequest openshift-cloud-credential-operator/aws-ebs-csi-driver-operator (507 of 930) +credentialsrequest openshift-cloud-credential-operator/azure-disk-csi-driver-operator (508 of 930) +credentialsrequest openshift-cloud-credential-operator/azure-file-csi-driver-operator (509 of 930) +credentialsrequest openshift-cloud-credential-operator/openstack-cinder-csi-driver-operator (510 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-gcp-pd-csi-driver-operator (511 of 930) +credentialsrequest openshift-cloud-credential-operator/ibm-vpc-block-csi-driver-operator (512 of 930) +credentialsrequest openshift-cloud-credential-operator/manila-csi-driver-operator (513 of 930) +credentialsrequest openshift-cloud-credential-operator/manila-csi-drivers (514 of 930) +credentialsrequest openshift-cloud-credential-operator/ovirt-csi-driver-operator (515 of 930) +credentialsrequest openshift-cloud-credential-operator/ibm-powervs-block-csi-driver-operator (516 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-vmware-vsphere-csi-driver-operator (517 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-vsphere-problem-detector (518 of 930) +storage cluster (519 of 930) +serviceaccount openshift-cluster-storage-operator/cluster-storage-operator (520 of 930) +clusterrolebinding cluster-storage-operator-role (521 of 930) +service openshift-cluster-storage-operator/cluster-storage-operator-metrics (522 of 930) +networkpolicy openshift-cluster-csi-drivers/allow-all-egress (523 of 930) +networkpolicy openshift-cluster-csi-drivers/allow-egress-to-api-server (524 of 930) +networkpolicy openshift-cluster-csi-drivers/allow-ingress-to-metrics-range (525 of 930) +networkpolicy openshift-cluster-csi-drivers/allow-ingress-to-operator-metrics-range (526 of 930) +networkpolicy openshift-cluster-csi-drivers/allow-to-dns (527 of 930) +networkpolicy openshift-cluster-storage-operator/allow-all-egress (528 of 930) +networkpolicy openshift-cluster-storage-operator/allow-egress-to-api-server (529 of 930) +networkpolicy openshift-cluster-storage-operator/allow-ingress-to-operator-metrics (530 of 930) +networkpolicy openshift-cluster-storage-operator/allow-to-dns (531 of 930) +clusterrole openshift-csi-provisioner-configmap-and-secret-reader-role (532 of 930) +clusterrole openshift-csi-provisioner-volumeattachment-reader-role (533 of 930) +clusterrole openshift-csi-provisioner-volumeattributesclass-reader-role (534 of 930) +clusterrole openshift-csi-provisioner-volumesnapshot-reader-role (535 of 930) +clusterrole openshift-csi-resizer-infrastructure-reader-role (536 of 930) +clusterrole openshift-csi-resizer-storageclass-reader-role (537 of 930) +clusterrole openshift-csi-resizer-volumeattributesclass-reader-role (538 of 930) +clusterrole openshift-csi-main-attacher-role (539 of 930) +clusterrole openshift-csi-main-provisioner-role (540 of 930) +clusterrole openshift-csi-main-resizer-role (541 of 930) +clusterrole openshift-csi-main-snapshotter-role (542 of 930) +deployment openshift-cluster-storage-operator/cluster-storage-operator (543 of 930) +clusteroperator storage (544 of 930) +prometheusrule openshift-cluster-storage-operator/prometheus (545 of 930) 0->43 - - + + 44 - -configmap openshift-machine-config-operator/coreos-bootimages (626 of 862) + +50-config-operator, 1 manifests +priorityclass openshift-user-critical (546 of 930) 0->44 - - + + 45 - -configmap openshift-machine-config-operator/coreos-bootimages (627 of 862) + +50-console-operator, 76 manifests +customresourcedefinition consoleclidownloads.console.openshift.io (547 of 930) +customresourcedefinition consoleexternalloglinks.console.openshift.io (548 of 930) +customresourcedefinition consolelinks.console.openshift.io (549 of 930) +customresourcedefinition consolenotifications.console.openshift.io (550 of 930) +customresourcedefinition consolequickstarts.console.openshift.io (551 of 930) +customresourcedefinition consolesamples.console.openshift.io (552 of 930) +customresourcedefinition consoleyamlsamples.console.openshift.io (553 of 930) +customresourcedefinition helmchartrepositories.helm.openshift.io (554 of 930) +customresourcedefinition projecthelmchartrepositories.helm.openshift.io (555 of 930) +helmchartrepository openshift-helm-charts (556 of 930) +oauthclient console (557 of 930) +console cluster (558 of 930) +namespace openshift-console (559 of 930) +namespace openshift-console-operator (560 of 930) +namespace openshift-console-user-settings (561 of 930) +clusterrole console-extensions-reader (562 of 930) +clusterrole console-operator (563 of 930) +clusterrole console (564 of 930) +clusterrole helm-chartrepos-viewer (565 of 930) +clusterrole project-helm-chartrepository-editor (566 of 930) +role openshift-console/console-operator (567 of 930) +role openshift-config-managed/console-operator (568 of 930) +role openshift-config-managed/console-public (569 of 930) +role openshift-config-managed/console-configmap-reader (570 of 930) +role openshift-config/console-operator (571 of 930) +role openshift-console-user-settings/console-user-settings-admin (572 of 930) +rolebinding openshift-console-user-settings/console-user-settings-admin (573 of 930) +role openshift-monitoring/console-operator (574 of 930) +role openshift-console-operator/console-operator (575 of 930) +clusterrolebinding console-operator (576 of 930) +clusterrolebinding console-extensions-reader (577 of 930) +clusterrolebinding console-operator-auth-delegator (578 of 930) +clusterrolebinding console (579 of 930) +clusterrolebinding helm-chartrepos-view (580 of 930) +clusterrolebinding console-auth-delegator (581 of 930) +rolebinding openshift-console/console-operator (582 of 930) +rolebinding openshift-console-operator/console-operator (583 of 930) +rolebinding openshift-config-managed/console-operator (584 of 930) +rolebinding openshift-config-managed/console-public (585 of 930) +rolebinding openshift-config/console-operator (586 of 930) +rolebinding openshift-monitoring/console-operator (587 of 930) +rolebinding kube-system/console-operator (588 of 930) +rolebinding openshift-config-managed/console-configmap-reader (589 of 930) +rolebinding kube-system/console (590 of 930) +configmap openshift-console-operator/console-operator-config (591 of 930) +service openshift-console-operator/metrics (592 of 930) +configmap openshift-console-operator/telemetry-config (593 of 930) +serviceaccount openshift-console-operator/console-operator (594 of 930) +serviceaccount openshift-console/console (595 of 930) +configmap openshift-console-operator/trusted-ca (596 of 930) +consoleclidownload helm-download-links (597 of 930) +consoleclidownload netobserv (598 of 930) +deployment openshift-console-operator/console-operator (599 of 930) +customresourcedefinition consoleplugins.console.openshift.io (600 of 930) +clusteroperator console (601 of 930) +consolequickstart add-healthchecks (602 of 930) +prometheusrule openshift-console-operator/cluster-monitoring-prometheus-rules (603 of 930) +consolequickstart install-cryostat (604 of 930) +consolequickstart enable-developer-perspective (605 of 930) +consolequickstart explore-pipelines (606 of 930) +consolequickstart host-inventory (607 of 930) +consolequickstart user-impersonation (608 of 930) +consolequickstart install-helmchartrepo-ns (609 of 930) +consolequickstart install-multicluster-engine (610 of 930) +consolequickstart odf-install-tour (611 of 930) +consolequickstart install-serverless (612 of 930) +consolequickstart jboss-eap7-with-helm (613 of 930) +consolequickstart manage-helm-repos (614 of 930) +consolequickstart monitor-sampleapp (615 of 930) +consolequickstart node-with-s2i (616 of 930) +consolequickstart quarkus-with-helm (617 of 930) +consolequickstart quarkus-with-s2i (618 of 930) +consolequickstart rhdh-installation-via-helm (619 of 930) +consolequickstart rhdh-installation-via-operator (620 of 930) +consolequickstart sample-application (621 of 930) +consolequickstart spring-with-s2i (622 of 930) 0->45 - - + + 46 - -configmap openshift-machine-config-operator/coreos-bootimages (628 of 862) + +50-console, 1 manifests +customresourcedefinition consoles.operator.openshift.io (623 of 930) 0->46 - - + + 47 - -customresourcedefinition catalogsources.operators.coreos.com (629 of 862) -customresourcedefinition clusterserviceversions.operators.coreos.com (630 of 862) -customresourcedefinition installplans.operators.coreos.com (631 of 862) -namespace openshift-operator-lifecycle-manager (632 of 862) -namespace openshift-operators (633 of 862) -customresourcedefinition olmconfigs.operators.coreos.com (634 of 862) -customresourcedefinition operatorconditions.operators.coreos.com (635 of 862) -customresourcedefinition operatorgroups.operators.coreos.com (636 of 862) -customresourcedefinition operators.operators.coreos.com (637 of 862) -poddisruptionbudget openshift-operator-lifecycle-manager/packageserver-pdb (638 of 862) -configmap openshift-operator-lifecycle-manager/collect-profiles-config (639 of 862) -role openshift-operator-lifecycle-manager/collect-profiles (640 of 862) -rolebinding openshift-operator-lifecycle-manager/collect-profiles (641 of 862) -serviceaccount openshift-operator-lifecycle-manager/collect-profiles (642 of 862) -secret openshift-operator-lifecycle-manager/pprof-cert (643 of 862) -customresourcedefinition subscriptions.operators.coreos.com (644 of 862) -serviceaccount openshift-operator-lifecycle-manager/olm-operator-serviceaccount (645 of 862) -clusterrole system:controller:operator-lifecycle-manager (646 of 862) -clusterrolebinding olm-operator-binding-openshift-operator-lifecycle-manager (647 of 862) -olmconfig cluster (648 of 862) -service openshift-operator-lifecycle-manager/olm-operator-metrics (649 of 862) -service openshift-operator-lifecycle-manager/catalog-operator-metrics (650 of 862) -deployment openshift-operator-lifecycle-manager/package-server-manager (651 of 862) -service openshift-operator-lifecycle-manager/package-server-manager-metrics (652 of 862) -servicemonitor openshift-operator-lifecycle-manager/package-server-manager-metrics (653 of 862) -cronjob openshift-operator-lifecycle-manager/collect-profiles (654 of 862) -deployment openshift-operator-lifecycle-manager/olm-operator (655 of 862) -deployment openshift-operator-lifecycle-manager/catalog-operator (656 of 862) -clusterrole aggregate-olm-edit (657 of 862) -clusterrole aggregate-olm-view (658 of 862) -configmap openshift-operator-lifecycle-manager/olm-operators (659 of 862) -catalogsource openshift-operator-lifecycle-manager/olm-operators (660 of 862) -operatorgroup openshift-operators/global-operators (661 of 862) -operatorgroup openshift-operator-lifecycle-manager/olm-operators (662 of 862) -subscription openshift-operator-lifecycle-manager/packageserver (663 of 862) -role openshift/copied-csv-viewer (664 of 862) -rolebinding openshift/copied-csv-viewers (665 of 862) -clusteroperator operator-lifecycle-manager (666 of 862) -clusteroperator operator-lifecycle-manager-catalog (667 of 862) -clusteroperator operator-lifecycle-manager-packageserver (668 of 862) + +50-csi-driver, 1 manifests +customresourcedefinition clustercsidrivers.operator.openshift.io (624 of 930) 0->47 - - + + 48 - -namespace openshift-marketplace (669 of 862) -serviceaccount openshift-marketplace/marketplace-operator (670 of 862) -clusterrole marketplace-operator (671 of 862) -role openshift-marketplace/marketplace-operator (672 of 862) -clusterrole operatorhub-config-reader (673 of 862) -clusterrolebinding marketplace-operator (674 of 862) -rolebinding openshift-marketplace/marketplace-operator (675 of 862) -configmap openshift-marketplace/marketplace-trusted-ca (676 of 862) -service openshift-marketplace/marketplace-operator-metrics (677 of 862) -deployment openshift-marketplace/marketplace-operator (678 of 862) -clusteroperator marketplace (679 of 862) -servicemonitor openshift-marketplace/marketplace-operator (680 of 862) -rolebinding openshift-marketplace/openshift-marketplace-metrics (681 of 862) -role openshift-marketplace/openshift-marketplace-metrics (682 of 862) -prometheusrule openshift-marketplace/marketplace-alert-rules (683 of 862) + +50-driver-toolkit, 1 manifests +imagestream openshift/driver-toolkit (625 of 930) 0->48 - - + + 49 - -clusterrolebinding system:openshift:operator:service-ca-operator (684 of 862) -namespace openshift-service-ca-operator (685 of 862) -customresourcedefinition servicecas.operator.openshift.io (686 of 862) -service openshift-service-ca-operator/metrics (687 of 862) -configmap openshift-service-ca-operator/service-ca-operator-config (688 of 862) -serviceca cluster (689 of 862) -serviceaccount openshift-service-ca-operator/service-ca-operator (690 of 862) -deployment openshift-service-ca-operator/service-ca-operator (691 of 862) -clusteroperator service-ca (692 of 862) + +50-insights-operator, 36 manifests +namespace openshift-insights (626 of 930) +clusterrolebinding insights-operator-auth (627 of 930) +rolebinding kube-system/insights-operator-auth (628 of 930) +clusterrole insights-operator (629 of 930) +rolebinding openshift-monitoring/insights-operator-alertmanager (630 of 930) +clusterrolebinding insights-operator (631 of 930) +clusterrole insights-operator-gather (632 of 930) +clusterrolebinding insights-operator-gather (633 of 930) +clusterrolebinding insights-operator-gather-reader (634 of 930) +role openshift-config/insights-operator (635 of 930) +rolebinding openshift-config/insights-operator (636 of 930) +role openshift-insights/insights-operator (637 of 930) +rolebinding openshift-insights/insights-operator (638 of 930) +role openshift-insights/insights-operator-obfuscation-secret (639 of 930) +rolebinding openshift-insights/insights-operator-obfuscation-secret (640 of 930) +role openshift-config-managed/insights-operator-etc-pki-entitlement (641 of 930) +rolebinding openshift-config-managed/insights-operator-etc-pki-entitlement (642 of 930) +clusterrole openshift-insights/insights-runtime-extractor-role (643 of 930) +clusterrolebinding openshift-insights/insights-runtime-extractor (644 of 930) +securitycontextconstraints openshift-insights/insights-runtime-extractor-scc (645 of 930) +customresourcedefinition insightsoperators.operator.openshift.io (646 of 930) +serviceaccount openshift-insights/operator (647 of 930) +serviceaccount openshift-insights/gather (648 of 930) +serviceaccount openshift-insights/insights-runtime-extractor-sa (649 of 930) +insightsoperator cluster (650 of 930) +rolebinding openshift-insights/prometheus-k8s (651 of 930) +configmap openshift-insights/trusted-ca-bundle (652 of 930) +configmap openshift-insights/service-ca-bundle (653 of 930) +role openshift-insights/prometheus-k8s (654 of 930) +deployment openshift-insights/insights-operator (655 of 930) +service openshift-insights/metrics (656 of 930) +clusteroperator insights (657 of 930) +servicemonitor openshift-insights/insights-operator (658 of 930) +configmap openshift-insights/kube-rbac-proxy (659 of 930) +service openshift-insights/exporter (660 of 930) +daemonset openshift-insights/insights-runtime-extractor (661 of 930) 0->49 - - + + 50 - -namespace openshift-network-operator (693 of 862) -customresourcedefinition networks.operator.openshift.io (694 of 862) -credentialsrequest openshift-cloud-credential-operator/openshift-network (695 of 862) -customresourcedefinition egressrouters.network.operator.openshift.io (696 of 862) -customresourcedefinition operatorpkis.network.operator.openshift.io (697 of 862) -serviceaccount openshift-network-operator/cluster-network-operator (698 of 862) -clusterrolebinding cluster-network-operator (699 of 862) -deployment openshift-network-operator/network-operator (700 of 862) -clusteroperator network (701 of 862) + +50-installer-artifacts, 1 manifests +configmap openshift-machine-config-operator/coreos-bootimages (662 of 930) 0->50 - - + + 51 - -clusterrole openshift-dns-operator (702 of 862) -namespace openshift-dns-operator (703 of 862) -customresourcedefinition dnses.operator.openshift.io (704 of 862) -clusterrolebinding openshift-dns-operator (705 of 862) -rolebinding openshift-dns-operator/dns-operator (706 of 862) -role openshift-dns-operator/dns-operator (707 of 862) -serviceaccount openshift-dns-operator/dns-operator (708 of 862) -service openshift-dns-operator/metrics (709 of 862) -deployment openshift-dns-operator/dns-operator (710 of 862) -clusteroperator dns (711 of 862) + +50-installer, 1 manifests +configmap openshift-machine-config-operator/coreos-bootimages (663 of 930) 0->51 - - + + 52 - -clusterrole system:openshift:machine-config-operator:cluster-reader (712 of 862) -namespace openshift-machine-config-operator (713 of 862) -namespace openshift-openstack-infra (714 of 862) -namespace openshift-kni-infra (715 of 862) -namespace openshift-ovirt-infra (716 of 862) -namespace openshift-vsphere-infra (717 of 862) -namespace openshift-nutanix-infra (718 of 862) -namespace openshift-cloud-platform-infra (719 of 862) -service openshift-machine-config-operator/machine-config-operator (720 of 862) -service openshift-machine-config-operator/machine-config-controller (721 of 862) -service openshift-machine-config-operator/machine-config-daemon (722 of 862) -customresourcedefinition machineconfigurations.operator.openshift.io (723 of 862) -customresourcedefinition containerruntimeconfigs.machineconfiguration.openshift.io (724 of 862) -customresourcedefinition kubeletconfigs.machineconfiguration.openshift.io (725 of 862) -customresourcedefinition machineconfigs.machineconfiguration.openshift.io (726 of 862) -customresourcedefinition machineconfigpools.machineconfiguration.openshift.io (727 of 862) -configmap openshift-machine-config-operator/machine-config-operator-images (728 of 862) -serviceaccount openshift-machine-config-operator/machine-config-operator (729 of 862) -clusterrolebinding custom-account-openshift-machine-config-operator (730 of 862) -role openshift-machine-config-operator/prometheus-k8s (731 of 862) -rolebinding openshift-machine-config-operator/prometheus-k8s (732 of 862) -deployment openshift-machine-config-operator/machine-config-operator (733 of 862) -configmap openshift-machine-config-operator/kube-rbac-proxy (734 of 862) -configmap openshift-machine-config-operator/machine-config-osimageurl (735 of 862) -clusteroperator machine-config (736 of 862) + +50-olm, 47 manifests +customresourcedefinition catalogsources.operators.coreos.com (664 of 930) +customresourcedefinition clusterserviceversions.operators.coreos.com (665 of 930) +customresourcedefinition installplans.operators.coreos.com (666 of 930) +namespace openshift-operator-lifecycle-manager (667 of 930) +namespace openshift-operators (668 of 930) +customresourcedefinition olmconfigs.operators.coreos.com (669 of 930) +customresourcedefinition operatorconditions.operators.coreos.com (670 of 930) +customresourcedefinition operatorgroups.operators.coreos.com (671 of 930) +customresourcedefinition operators.operators.coreos.com (672 of 930) +poddisruptionbudget openshift-operator-lifecycle-manager/packageserver-pdb (673 of 930) +configmap openshift-operator-lifecycle-manager/collect-profiles-config (674 of 930) +role openshift-operator-lifecycle-manager/collect-profiles (675 of 930) +rolebinding openshift-operator-lifecycle-manager/collect-profiles (676 of 930) +serviceaccount openshift-operator-lifecycle-manager/collect-profiles (677 of 930) +secret openshift-operator-lifecycle-manager/pprof-cert (678 of 930) +customresourcedefinition subscriptions.operators.coreos.com (679 of 930) +networkpolicy openshift-operator-lifecycle-manager/default-deny-all-traffic (680 of 930) +networkpolicy openshift-operator-lifecycle-manager/olm-operator (681 of 930) +networkpolicy openshift-operator-lifecycle-manager/catalog-operator (682 of 930) +networkpolicy openshift-operator-lifecycle-manager/packageserver (683 of 930) +networkpolicy openshift-operators/default-allow-all (684 of 930) +serviceaccount openshift-operator-lifecycle-manager/olm-operator-serviceaccount (685 of 930) +clusterrole system:controller:operator-lifecycle-manager (686 of 930) +clusterrolebinding olm-operator-binding-openshift-operator-lifecycle-manager (687 of 930) +olmconfig cluster (688 of 930) +service openshift-operator-lifecycle-manager/olm-operator-metrics (689 of 930) +service openshift-operator-lifecycle-manager/catalog-operator-metrics (690 of 930) +deployment openshift-operator-lifecycle-manager/package-server-manager (691 of 930) +networkpolicy openshift-operator-lifecycle-manager/package-server-manager (692 of 930) +service openshift-operator-lifecycle-manager/package-server-manager-metrics (693 of 930) +servicemonitor openshift-operator-lifecycle-manager/package-server-manager-metrics (694 of 930) +cronjob openshift-operator-lifecycle-manager/collect-profiles (695 of 930) +networkpolicy openshift-operator-lifecycle-manager/collect-profiles (696 of 930) +deployment openshift-operator-lifecycle-manager/olm-operator (697 of 930) +deployment openshift-operator-lifecycle-manager/catalog-operator (698 of 930) +clusterrole aggregate-olm-edit (699 of 930) +clusterrole aggregate-olm-view (700 of 930) +configmap openshift-operator-lifecycle-manager/olm-operators (701 of 930) +catalogsource openshift-operator-lifecycle-manager/olm-operators (702 of 930) +operatorgroup openshift-operators/global-operators (703 of 930) +operatorgroup openshift-operator-lifecycle-manager/olm-operators (704 of 930) +subscription openshift-operator-lifecycle-manager/packageserver (705 of 930) +role openshift/copied-csv-viewer (706 of 930) +rolebinding openshift/copied-csv-viewers (707 of 930) +clusteroperator operator-lifecycle-manager (708 of 930) +clusteroperator operator-lifecycle-manager-catalog (709 of 930) +clusteroperator operator-lifecycle-manager-packageserver (710 of 930) 0->52 - - + + 53 - -role openshift-cloud-credential-operator/prometheus-k8s (737 of 862) -rolebinding openshift-cloud-credential-operator/prometheus-k8s (738 of 862) -servicemonitor openshift-cloud-credential-operator/cloud-credential-operator (739 of 862) -prometheusrule openshift-cloud-credential-operator/cloud-credential-operator-alerts (740 of 862) + +50-openshift-controller-manager, 1 manifests +customresourcedefinition openshiftcontrollermanagers.operator.openshift.io (711 of 930) 0->53 - - + + 54 - -role openshift-authentication-operator/prometheus-k8s (741 of 862) -role openshift-authentication/prometheus-k8s (742 of 862) -role openshift-oauth-apiserver/prometheus-k8s (743 of 862) -rolebinding openshift-authentication-operator/prometheus-k8s (744 of 862) -rolebinding openshift-authentication/prometheus-k8s (745 of 862) -rolebinding openshift-oauth-apiserver/prometheus-k8s (746 of 862) -servicemonitor openshift-authentication-operator/authentication-operator (747 of 862) -servicemonitor openshift-authentication/oauth-openshift (748 of 862) -servicemonitor openshift-oauth-apiserver/openshift-oauth-apiserver (749 of 862) -prometheusrule openshift-authentication-operator/authentication-operator (750 of 862) + +50-operator-marketplace, 15 manifests +namespace openshift-marketplace (712 of 930) +serviceaccount openshift-marketplace/marketplace-operator (713 of 930) +clusterrole marketplace-operator (714 of 930) +role openshift-marketplace/marketplace-operator (715 of 930) +clusterrole operatorhub-config-reader (716 of 930) +clusterrolebinding marketplace-operator (717 of 930) +rolebinding openshift-marketplace/marketplace-operator (718 of 930) +configmap openshift-marketplace/marketplace-trusted-ca (719 of 930) +service openshift-marketplace/marketplace-operator-metrics (720 of 930) +deployment openshift-marketplace/marketplace-operator (721 of 930) +clusteroperator marketplace (722 of 930) +servicemonitor openshift-marketplace/marketplace-operator (723 of 930) +rolebinding openshift-marketplace/openshift-marketplace-metrics (724 of 930) +role openshift-marketplace/openshift-marketplace-metrics (725 of 930) +prometheusrule openshift-marketplace/marketplace-alert-rules (726 of 930) 0->54 - - + + 55 - -configmap openshift-config-managed/etcd-dashboard (751 of 862) -configmap openshift-config-managed/grafana-dashboard-etcd (752 of 862) + +50-service-ca-operator, 9 manifests +clusterrolebinding system:openshift:operator:service-ca-operator (727 of 930) +namespace openshift-service-ca-operator (728 of 930) +customresourcedefinition servicecas.operator.openshift.io (729 of 930) +service openshift-service-ca-operator/metrics (730 of 930) +configmap openshift-service-ca-operator/service-ca-operator-config (731 of 930) +serviceca cluster (732 of 930) +serviceaccount openshift-service-ca-operator/service-ca-operator (733 of 930) +deployment openshift-service-ca-operator/service-ca-operator (734 of 930) +clusteroperator service-ca (735 of 930) 0->55 - - + + 56 - -clusterrole registry-monitoring (753 of 862) -clusterrolebinding registry-monitoring (754 of 862) -role openshift-image-registry/prometheus-k8s (755 of 862) -rolebinding openshift-image-registry/prometheus-k8s (756 of 862) -servicemonitor openshift-image-registry/image-registry (757 of 862) -servicemonitor openshift-image-registry/image-registry-operator (758 of 862) + +50-storage, 1 manifests +customresourcedefinition storages.operator.openshift.io (736 of 930) 0->56 - - + + 57 - -role openshift-cluster-machine-approver/prometheus-k8s (759 of 862) -rolebinding openshift-cluster-machine-approver/prometheus-k8s (760 of 862) -servicemonitor openshift-cluster-machine-approver/cluster-machine-approver (761 of 862) -prometheusrule openshift-cluster-machine-approver/machineapprover-rules (762 of 862) + +51-olm, 12 manifests +olm cluster (737 of 930) +namespace openshift-cluster-olm-operator (738 of 930) +clusterrole cluster-olm-operator (739 of 930) +serviceaccount openshift-cluster-olm-operator/cluster-olm-operator (740 of 930) +service openshift-cluster-olm-operator/cluster-olm-operator-metrics (741 of 930) +clusterrolebinding cluster-olm-operator-role (742 of 930) +deployment openshift-cluster-olm-operator/cluster-olm-operator (743 of 930) +clusteroperator olm (744 of 930) +networkpolicy openshift-cluster-olm-operator/default-deny-all (745 of 930) +networkpolicy openshift-cluster-olm-operator/allow-egress-to-openshift-dns (746 of 930) +networkpolicy openshift-cluster-olm-operator/allow-egress-to-api-server (747 of 930) +networkpolicy openshift-cluster-olm-operator/allow-metrics-traffic (748 of 930) 0->57 - - + + 58 - -operatorgroup openshift-monitoring/openshift-cluster-monitoring (763 of 862) -configmap openshift-config-managed/grafana-dashboard-cluster-total (764 of 862) -configmap openshift-config-managed/grafana-dashboard-k8s-resources-cluster (765 of 862) -configmap openshift-config-managed/grafana-dashboard-k8s-resources-namespace (766 of 862) -configmap openshift-config-managed/grafana-dashboard-k8s-resources-node (767 of 862) -configmap openshift-config-managed/grafana-dashboard-k8s-resources-pod (768 of 862) -configmap openshift-config-managed/grafana-dashboard-k8s-resources-workload (769 of 862) -configmap openshift-config-managed/grafana-dashboard-k8s-resources-workloads-namespace (770 of 862) -configmap openshift-config-managed/grafana-dashboard-namespace-by-pod (771 of 862) -configmap openshift-config-managed/grafana-dashboard-node-cluster-rsrc-use (772 of 862) -configmap openshift-config-managed/grafana-dashboard-node-rsrc-use (773 of 862) -configmap openshift-config-managed/grafana-dashboard-pod-total (774 of 862) -configmap openshift-config-managed/grafana-dashboard-prometheus (775 of 862) + +70-cluster-network-operator, 8 manifests +namespace openshift-network-operator (749 of 930) +credentialsrequest openshift-cloud-credential-operator/openshift-network (750 of 930) +customresourcedefinition egressrouters.network.operator.openshift.io (751 of 930) +customresourcedefinition operatorpkis.network.operator.openshift.io (752 of 930) +serviceaccount openshift-network-operator/cluster-network-operator (753 of 930) +clusterrolebinding cluster-network-operator (754 of 930) +deployment openshift-network-operator/network-operator (755 of 930) +clusteroperator network (756 of 930) 0->58 - - + + 59 - -role openshift-cluster-storage-operator/prometheus (776 of 862) -rolebinding openshift-cluster-storage-operator/prometheus (777 of 862) -servicemonitor openshift-cluster-storage-operator/cluster-storage-operator (778 of 862) + +70-dns-operator, 10 manifests +clusterrole openshift-dns-operator (757 of 930) +namespace openshift-dns-operator (758 of 930) +customresourcedefinition dnses.operator.openshift.io (759 of 930) +clusterrolebinding openshift-dns-operator (760 of 930) +rolebinding openshift-dns-operator/dns-operator (761 of 930) +role openshift-dns-operator/dns-operator (762 of 930) +serviceaccount openshift-dns-operator/dns-operator (763 of 930) +service openshift-dns-operator/metrics (764 of 930) +deployment openshift-dns-operator/dns-operator (765 of 930) +clusteroperator dns (766 of 930) 0->59 - - + + 60 - -configmap openshift-config-managed/release-verification (779 of 862) + +70-network, 1 manifests +customresourcedefinition networks.operator.openshift.io (767 of 930) 0->60 - - + + 61 - -role openshift-console-operator/prometheus-k8s (780 of 862) -rolebinding openshift-console-operator/prometheus-k8s (781 of 862) -servicemonitor openshift-console-operator/console-operator (782 of 862) -storageversionmigration console-plugin-storage-version-migration (783 of 862) + +80-machine-config, 38 manifests +clusterrole system:openshift:machine-config-operator:cluster-reader (768 of 930) +namespace openshift-machine-config-operator (769 of 930) +namespace openshift-openstack-infra (770 of 930) +namespace openshift-kni-infra (771 of 930) +namespace openshift-ovirt-infra (772 of 930) +namespace openshift-vsphere-infra (773 of 930) +namespace openshift-nutanix-infra (774 of 930) +namespace openshift-cloud-platform-infra (775 of 930) +service openshift-machine-config-operator/machine-config-operator (776 of 930) +service openshift-machine-config-operator/machine-config-controller (777 of 930) +service openshift-machine-config-operator/machine-config-daemon (778 of 930) +customresourcedefinition containerruntimeconfigs.machineconfiguration.openshift.io (779 of 930) +customresourcedefinition controllerconfigs.machineconfiguration.openshift.io (780 of 930) +customresourcedefinition kubeletconfigs.machineconfiguration.openshift.io (781 of 930) +customresourcedefinition machineconfignodes.machineconfiguration.openshift.io (782 of 930) +customresourcedefinition machineconfigpools.machineconfiguration.openshift.io (783 of 930) +customresourcedefinition machineconfigs.machineconfiguration.openshift.io (784 of 930) +customresourcedefinition machineconfigurations.operator.openshift.io (785 of 930) +customresourcedefinition machineosbuilds.machineconfiguration.openshift.io (786 of 930) +customresourcedefinition machineosconfigs.machineconfiguration.openshift.io (787 of 930) +customresourcedefinition pinnedimagesets.machineconfiguration.openshift.io (788 of 930) +configmap openshift-machine-config-operator/machine-config-operator-images (789 of 930) +serviceaccount openshift-machine-config-operator/machine-config-operator (790 of 930) +clusterrolebinding custom-account-openshift-machine-config-operator (791 of 930) +role openshift-machine-config-operator/prometheus-k8s (792 of 930) +rolebinding openshift-machine-config-operator/prometheus-k8s (793 of 930) +role openshift-openstack-infra/host-networking-services (794 of 930) +role openshift-kni-infra/host-networking-services (795 of 930) +role openshift-vsphere-infra/host-networking-services (796 of 930) +role openshift-nutanix-infra/host-networking-services (797 of 930) +rolebinding openshift-openstack-infra/host-networking-system-node (798 of 930) +rolebinding openshift-kni-infra/host-networking-system-node (799 of 930) +rolebinding openshift-vsphere-infra/host-networking-system-node (800 of 930) +rolebinding openshift-nutanix-infra/host-networking-system-node (801 of 930) +deployment openshift-machine-config-operator/machine-config-operator (802 of 930) +configmap openshift-machine-config-operator/kube-rbac-proxy (803 of 930) +configmap openshift-machine-config-operator/machine-config-osimageurl (804 of 930) +clusteroperator machine-config (805 of 930) 0->61 - - + + 62 - -role openshift-console/prometheus-k8s (784 of 862) -rolebinding openshift-console/prometheus-k8s (785 of 862) -servicemonitor openshift-console/console (786 of 862) + +90-baremetal-installer, 1 manifests +configmap openshift-config/installer-images (806 of 930) 0->62 - - + + 63 - -role openshift-dns-operator/prometheus-k8s (787 of 862) -rolebinding openshift-dns-operator/prometheus-k8s (788 of 862) -servicemonitor openshift-dns-operator/dns-operator (789 of 862) -prometheusrule openshift-dns-operator/dns (790 of 862) + +90-cloud-credential-operator, 4 manifests +role openshift-cloud-credential-operator/prometheus-k8s (807 of 930) +rolebinding openshift-cloud-credential-operator/prometheus-k8s (808 of 930) +servicemonitor openshift-cloud-credential-operator/cloud-credential-operator (809 of 930) +prometheusrule openshift-cloud-credential-operator/cloud-credential-operator-alerts (810 of 930) 0->63 - - + + 64 - -role openshift-etcd-operator/prometheus-k8s (791 of 862) -rolebinding openshift-etcd-operator/prometheus-k8s (792 of 862) -prometheusrule openshift-etcd-operator/etcd-prometheus-rules (793 of 862) -servicemonitor openshift-etcd-operator/etcd-operator (794 of 862) + +90-cluster-authentication-operator, 10 manifests +role openshift-authentication-operator/prometheus-k8s (811 of 930) +role openshift-authentication/prometheus-k8s (812 of 930) +role openshift-oauth-apiserver/prometheus-k8s (813 of 930) +rolebinding openshift-authentication-operator/prometheus-k8s (814 of 930) +rolebinding openshift-authentication/prometheus-k8s (815 of 930) +rolebinding openshift-oauth-apiserver/prometheus-k8s (816 of 930) +servicemonitor openshift-authentication-operator/authentication-operator (817 of 930) +servicemonitor openshift-authentication/oauth-openshift (818 of 930) +servicemonitor openshift-oauth-apiserver/openshift-oauth-apiserver (819 of 930) +prometheusrule openshift-authentication-operator/authentication-operator (820 of 930) 0->64 - - + + 65 - -role openshift-ingress-operator/prometheus-k8s (795 of 862) -rolebinding openshift-ingress-operator/prometheus-k8s (796 of 862) -servicemonitor openshift-ingress-operator/ingress-operator (797 of 862) -prometheusrule openshift-ingress-operator/ingress-operator (798 of 862) + +90-cluster-etcd-operator, 1 manifests +configmap openshift-config-managed/etcd-dashboard (821 of 930) 0->65 - - + + 66 - -role openshift-kube-apiserver-operator/prometheus-k8s (799 of 862) -rolebinding openshift-kube-apiserver-operator/prometheus-k8s (800 of 862) -servicemonitor openshift-kube-apiserver-operator/kube-apiserver-operator (801 of 862) -prometheusrule openshift-kube-apiserver-operator/kube-apiserver-operator (802 of 862) -role openshift-kube-apiserver/prometheus-k8s (803 of 862) -rolebinding openshift-kube-apiserver/prometheus-k8s (804 of 862) -servicemonitor openshift-kube-apiserver/kube-apiserver (805 of 862) -prometheusrule openshift-kube-apiserver/kube-apiserver-performance-recording-rules (806 of 862) -prometheusrule openshift-kube-apiserver/kube-apiserver-recording-rules (807 of 862) -configmap openshift-config-managed/grafana-dashboard-apiserver-performance (808 of 862) -configmap openshift-config-managed/grafana-dashboard-api-performance (809 of 862) + +90-cluster-image-registry-operator, 6 manifests +clusterrole registry-monitoring (822 of 930) +clusterrolebinding registry-monitoring (823 of 930) +role openshift-image-registry/prometheus-k8s (824 of 930) +rolebinding openshift-image-registry/prometheus-k8s (825 of 930) +servicemonitor openshift-image-registry/image-registry (826 of 930) +servicemonitor openshift-image-registry/image-registry-operator (827 of 930) 0->66 - - + + 67 - -role openshift-kube-controller-manager-operator/prometheus-k8s (810 of 862) -rolebinding openshift-kube-controller-manager-operator/prometheus-k8s (811 of 862) -servicemonitor openshift-kube-controller-manager-operator/kube-controller-manager-operator (812 of 862) -role openshift-kube-controller-manager/prometheus-k8s (813 of 862) -rolebinding openshift-kube-controller-manager/prometheus-k8s (814 of 862) -servicemonitor openshift-kube-controller-manager/kube-controller-manager (815 of 862) -prometheusrule openshift-kube-controller-manager-operator/kube-controller-manager-operator (816 of 862) + +90-cluster-machine-approver, 4 manifests +role openshift-cluster-machine-approver/prometheus-k8s (828 of 930) +rolebinding openshift-cluster-machine-approver/prometheus-k8s (829 of 930) +servicemonitor openshift-cluster-machine-approver/cluster-machine-approver (830 of 930) +prometheusrule openshift-cluster-machine-approver/machineapprover-rules (831 of 930) 0->67 - - + + 68 - -role openshift-kube-scheduler-operator/prometheus-k8s (817 of 862) -rolebinding openshift-kube-scheduler-operator/prometheus-k8s (818 of 862) -servicemonitor openshift-kube-scheduler-operator/kube-scheduler-operator (819 of 862) -prometheusrule openshift-kube-scheduler-operator/kube-scheduler-operator (820 of 862) -clusterrole prometheus-k8s-scheduler-resources (821 of 862) -role openshift-kube-scheduler/prometheus-k8s (822 of 862) -rolebinding openshift-kube-scheduler/prometheus-k8s (823 of 862) -clusterrolebinding prometheus-k8s-scheduler-resources (824 of 862) -servicemonitor openshift-kube-scheduler/kube-scheduler (825 of 862) + +90-cluster-monitoring-operator, 13 manifests +operatorgroup openshift-monitoring/openshift-cluster-monitoring (832 of 930) +configmap openshift-config-managed/dashboard-node-cluster-rsrc-use (833 of 930) +configmap openshift-config-managed/dashboard-node-rsrc-use (834 of 930) +configmap openshift-config-managed/dashboard-prometheus (835 of 930) +configmap openshift-config-managed/dashboard-cluster-total (836 of 930) +configmap openshift-config-managed/dashboard-k8s-resources-cluster (837 of 930) +configmap openshift-config-managed/dashboard-k8s-resources-namespace (838 of 930) +configmap openshift-config-managed/dashboard-k8s-resources-node (839 of 930) +configmap openshift-config-managed/dashboard-k8s-resources-pod (840 of 930) +configmap openshift-config-managed/dashboard-k8s-resources-workload (841 of 930) +configmap openshift-config-managed/dashboard-k8s-resources-workloads-namespace (842 of 930) +configmap openshift-config-managed/dashboard-namespace-by-pod (843 of 930) +configmap openshift-config-managed/dashboard-pod-total (844 of 930) 0->68 - - + + 69 - -servicemonitor openshift-machine-api/machine-api-operator (826 of 862) -servicemonitor openshift-machine-api/machine-api-controllers (827 of 862) -prometheusrule openshift-machine-api/machine-api-operator-prometheus-rules (828 of 862) + +90-cluster-storage-operator, 4 manifests +role openshift-cluster-storage-operator/prometheus (845 of 930) +rolebinding openshift-cluster-storage-operator/prometheus (846 of 930) +servicemonitor openshift-cluster-storage-operator/cluster-storage-operator (847 of 930) +networkpolicy openshift-cluster-storage-operator/default-deny (848 of 930) 0->69 - - + + 70 - -servicemonitor openshift-machine-config-operator/machine-config-operator (829 of 862) -servicemonitor openshift-machine-config-operator/machine-config-controller (830 of 862) -servicemonitor openshift-machine-config-operator/machine-config-daemon (831 of 862) -storageversionmigration machineconfiguration-controllerconfig-storage-version-migration (832 of 862) -storageversionmigration machineconfiguration-machineconfigpool-storage-version-migration (833 of 862) -configmap openshift-config-managed/node-cluster (834 of 862) -prometheusrule openshift-machine-config-operator/machine-config-controller (835 of 862) -prometheusrule openshift-machine-config-operator/machine-config-daemon (836 of 862) -clusterrolebinding default-account-openshift-machine-config-operator (837 of 862) + +90-cluster-update-keys, 1 manifests +configmap openshift-config-managed/release-verification (849 of 930) 0->70 - - + + 71 - -role openshift-operator-lifecycle-manager/operator-lifecycle-manager-metrics (838 of 862) -rolebinding openshift-operator-lifecycle-manager/operator-lifecycle-manager-metrics (839 of 862) -servicemonitor openshift-operator-lifecycle-manager/olm-operator (840 of 862) -servicemonitor openshift-operator-lifecycle-manager/catalog-operator (841 of 862) -prometheusrule openshift-operator-lifecycle-manager/olm-alert-rules (842 of 862) + +90-console-operator, 4 manifests +role openshift-console-operator/prometheus-k8s (850 of 930) +rolebinding openshift-console-operator/prometheus-k8s (851 of 930) +servicemonitor openshift-console-operator/console-operator (852 of 930) +storageversionmigration console-plugin-storage-version-migration (853 of 930) 0->71 - - + + 72 - -role openshift-apiserver-operator/prometheus-k8s (843 of 862) -rolebinding openshift-apiserver-operator/prometheus-k8s (844 of 862) -servicemonitor openshift-apiserver-operator/openshift-apiserver-operator (845 of 862) -role openshift-apiserver/prometheus-k8s (846 of 862) -rolebinding openshift-apiserver/prometheus-k8s (847 of 862) -servicemonitor openshift-apiserver/openshift-apiserver (848 of 862) -service openshift-apiserver/check-endpoints (849 of 862) -servicemonitor openshift-apiserver/openshift-apiserver-operator-check-endpoints (850 of 862) + +90-console, 3 manifests +role openshift-console/prometheus-k8s (854 of 930) +rolebinding openshift-console/prometheus-k8s (855 of 930) +servicemonitor openshift-console/console (856 of 930) 0->72 - - + + 73 - -role openshift-controller-manager-operator/prometheus-k8s (851 of 862) -rolebinding openshift-controller-manager-operator/prometheus-k8s (852 of 862) -servicemonitor openshift-controller-manager-operator/openshift-controller-manager-operator (853 of 862) -role openshift-controller-manager/prometheus-k8s (854 of 862) -rolebinding openshift-controller-manager/prometheus-k8s (855 of 862) -servicemonitor openshift-controller-manager/openshift-controller-manager (856 of 862) -role openshift-route-controller-manager/prometheus-k8s (857 of 862) -rolebinding openshift-route-controller-manager/prometheus-k8s (858 of 862) -servicemonitor openshift-route-controller-manager/openshift-route-controller-manager (859 of 862) + +90-dns-operator, 4 manifests +role openshift-dns-operator/prometheus-k8s (857 of 930) +rolebinding openshift-dns-operator/prometheus-k8s (858 of 930) +servicemonitor openshift-dns-operator/dns-operator (859 of 930) +prometheusrule openshift-dns-operator/dns (860 of 930) 0->73 - - + + 74 - -role openshift-service-ca-operator/prometheus-k8s (860 of 862) -rolebinding openshift-service-ca-operator/prometheus-k8s (861 of 862) -servicemonitor openshift-service-ca-operator/service-ca-operator (862 of 862) + +90-etcd-operator, 4 manifests +role openshift-etcd-operator/prometheus-k8s (861 of 930) +rolebinding openshift-etcd-operator/prometheus-k8s (862 of 930) +prometheusrule openshift-etcd-operator/etcd-prometheus-rules (863 of 930) +servicemonitor openshift-etcd-operator/etcd-operator (864 of 930) 0->74 - - + + + + + +75 + +90-ingress-operator, 4 manifests +role openshift-ingress-operator/prometheus-k8s (865 of 930) +rolebinding openshift-ingress-operator/prometheus-k8s (866 of 930) +servicemonitor openshift-ingress-operator/ingress-operator (867 of 930) +prometheusrule openshift-ingress-operator/ingress-operator (868 of 930) + + + +0->75 + + + + + +76 + +90-kube-apiserver-operator, 9 manifests +role openshift-kube-apiserver-operator/prometheus-k8s (869 of 930) +rolebinding openshift-kube-apiserver-operator/prometheus-k8s (870 of 930) +servicemonitor openshift-kube-apiserver-operator/kube-apiserver-operator (871 of 930) +prometheusrule openshift-kube-apiserver-operator/kube-apiserver-operator (872 of 930) +role openshift-kube-apiserver/prometheus-k8s (873 of 930) +rolebinding openshift-kube-apiserver/prometheus-k8s (874 of 930) +servicemonitor openshift-kube-apiserver/kube-apiserver (875 of 930) +prometheusrule openshift-kube-apiserver/kube-apiserver-performance-recording-rules (876 of 930) +configmap openshift-config-managed/grafana-dashboard-apiserver-performance (877 of 930) + + + +0->76 + + + + + +77 + +90-kube-controller-manager-operator, 7 manifests +role openshift-kube-controller-manager-operator/prometheus-k8s (878 of 930) +rolebinding openshift-kube-controller-manager-operator/prometheus-k8s (879 of 930) +servicemonitor openshift-kube-controller-manager-operator/kube-controller-manager-operator (880 of 930) +role openshift-kube-controller-manager/prometheus-k8s (881 of 930) +rolebinding openshift-kube-controller-manager/prometheus-k8s (882 of 930) +servicemonitor openshift-kube-controller-manager/kube-controller-manager (883 of 930) +prometheusrule openshift-kube-controller-manager-operator/kube-controller-manager-operator (884 of 930) + + + +0->77 + + + + + +78 + +90-kube-scheduler-operator, 9 manifests +role openshift-kube-scheduler-operator/prometheus-k8s (885 of 930) +rolebinding openshift-kube-scheduler-operator/prometheus-k8s (886 of 930) +servicemonitor openshift-kube-scheduler-operator/kube-scheduler-operator (887 of 930) +prometheusrule openshift-kube-scheduler-operator/kube-scheduler-operator (888 of 930) +clusterrole prometheus-k8s-scheduler-resources (889 of 930) +role openshift-kube-scheduler/prometheus-k8s (890 of 930) +rolebinding openshift-kube-scheduler/prometheus-k8s (891 of 930) +clusterrolebinding prometheus-k8s-scheduler-resources (892 of 930) +servicemonitor openshift-kube-scheduler/kube-scheduler (893 of 930) + + + +0->78 + + + + + +79 + +90-machine-api-operator, 3 manifests +servicemonitor openshift-machine-api/machine-api-operator (894 of 930) +servicemonitor openshift-machine-api/machine-api-controllers (895 of 930) +prometheusrule openshift-machine-api/machine-api-operator-prometheus-rules (896 of 930) + + + +0->79 + + + + + +80 + +90-machine-config, 9 manifests +servicemonitor openshift-machine-config-operator/machine-config-operator (897 of 930) +servicemonitor openshift-machine-config-operator/machine-config-controller (898 of 930) +servicemonitor openshift-machine-config-operator/machine-config-daemon (899 of 930) +storageversionmigration machineconfiguration-controllerconfig-storage-version-migration (900 of 930) +storageversionmigration machineconfiguration-machineconfigpool-storage-version-migration (901 of 930) +configmap openshift-config-managed/node-cluster (902 of 930) +prometheusrule openshift-machine-config-operator/machine-config-controller (903 of 930) +prometheusrule openshift-machine-config-operator/machine-config-daemon (904 of 930) +clusterrolebinding default-account-openshift-machine-config-operator (905 of 930) + + + +0->80 + + + + + +81 + +90-olm, 5 manifests +role openshift-operator-lifecycle-manager/operator-lifecycle-manager-metrics (906 of 930) +rolebinding openshift-operator-lifecycle-manager/operator-lifecycle-manager-metrics (907 of 930) +servicemonitor openshift-operator-lifecycle-manager/olm-operator (908 of 930) +servicemonitor openshift-operator-lifecycle-manager/catalog-operator (909 of 930) +prometheusrule openshift-operator-lifecycle-manager/olm-alert-rules (910 of 930) + + + +0->81 + + + + + +82 + +90-openshift-apiserver-operator, 8 manifests +role openshift-apiserver-operator/prometheus-k8s (911 of 930) +rolebinding openshift-apiserver-operator/prometheus-k8s (912 of 930) +servicemonitor openshift-apiserver-operator/openshift-apiserver-operator (913 of 930) +role openshift-apiserver/prometheus-k8s (914 of 930) +rolebinding openshift-apiserver/prometheus-k8s (915 of 930) +servicemonitor openshift-apiserver/openshift-apiserver (916 of 930) +service openshift-apiserver/check-endpoints (917 of 930) +servicemonitor openshift-apiserver/openshift-apiserver-operator-check-endpoints (918 of 930) + + + +0->82 + + + + + +83 + +90-openshift-controller-manager-operator, 9 manifests +role openshift-controller-manager-operator/prometheus-k8s (919 of 930) +rolebinding openshift-controller-manager-operator/prometheus-k8s (920 of 930) +servicemonitor openshift-controller-manager-operator/openshift-controller-manager-operator (921 of 930) +role openshift-controller-manager/prometheus-k8s (922 of 930) +rolebinding openshift-controller-manager/prometheus-k8s (923 of 930) +servicemonitor openshift-controller-manager/openshift-controller-manager (924 of 930) +role openshift-route-controller-manager/prometheus-k8s (925 of 930) +rolebinding openshift-route-controller-manager/prometheus-k8s (926 of 930) +servicemonitor openshift-route-controller-manager/openshift-route-controller-manager (927 of 930) + + + +0->83 + + + + + +84 + +90-service-ca-operator, 3 manifests +role openshift-service-ca-operator/prometheus-k8s (928 of 930) +rolebinding openshift-service-ca-operator/prometheus-k8s (929 of 930) +servicemonitor openshift-service-ca-operator/service-ca-operator (930 of 930) + + + +0->84 + +