72
72
EOF
73
73
----
74
74
75
- . Create instance of the `nmstate` operator:
75
+ . Confirm the `ClusterServiceVersion` (CSV) status for the `nmstate` Operator deployment equals `Succeeded` :
76
+ +
77
+ [source,terminal,subs="attributes+"]
78
+ ----
79
+ $ oc get clusterserviceversion -n openshift-nmstate \
80
+ -o custom-columns=Name:.metadata.name,Phase:.status.phase
81
+ ----
82
+ +
83
+ .Example output
84
+ [source, terminal,subs="attributes+"]
85
+ ----
86
+ Name Phase
87
+ kubernetes-nmstate-operator.4.15.0-202210210157 Succeeded
88
+ ----
89
+
90
+ . Create an instance of the `nmstate` Operator:
76
91
+
77
92
[source,terminal]
78
93
----
@@ -84,19 +99,26 @@ metadata:
84
99
EOF
85
100
----
86
101
87
- .Verification
88
-
89
- * Confirm that the deployment for the `nmstate` operator is running:
102
+ . Verify the pods for NMState Operator are running:
90
103
+
91
104
[source,terminal]
92
105
----
93
- oc get clusterserviceversion -n openshift-nmstate \
94
- -o custom-columns=Name:.metadata.name,Phase:.status.phase
106
+ $ oc get pod -n openshift-nmstate
95
107
----
96
108
+
97
109
.Example output
98
110
[source, terminal,subs="attributes+"]
99
111
----
100
- Name Phase
101
- kubernetes-nmstate-operator.{product-version} .0-202210210157 Succeeded
112
+ Name Ready Status Restarts Age
113
+ pod/nmstate-cert-manager-5b47d8dddf-5wnb5 1/1 Running 0 77s
114
+ pod/nmstate-console-plugin-d6b76c6b9-4dcwm 1/1 Running 0 77s
115
+ pod/nmstate-handler-6v7rm 1/1 Running 0 77s
116
+ pod/nmstate-handler-bjcxw 1/1 Running 0 77s
117
+ pod/nmstate-handler-fv6m2 1/1 Running 0 77s
118
+ pod/nmstate-handler-kb8j6 1/1 Running 0 77s
119
+ pod/nmstate-handler-wn55p 1/1 Running 0 77s
120
+ pod/nmstate-operator-f6bb869b6-v5m92 1/1 Running 0 4m51s
121
+ pod/nmstate-webhook-66d6bbd84b-6n674 1/1 Running 0 77s
122
+ pod/nmstate-webhook-66d6bbd84b-vlzrd 1/1 Running 0 77s
102
123
----
124
+
0 commit comments