Skip to content

Commit 3014b0b

Browse files
prithvipatil97openshift-cherrypick-robot
authored andcommitted
Update nw-installing-external-dns-operator-cli.adoc
Here is the current look of the verification section of the documentation: Verification Get the name of the install plan from the subscription by running the following command: $ oc -n external-dns-operator \ get subscription external-dns-operator \ --template='{{.status.installplan.name}}{{"\n"}}' Verify that the status of the install plan is Complete by running the following command: $ oc -n external-dns-operator \ get ip <install_plan_name> \ --template='{{.status.phase}}{{"\n"}}' The above commands are not structured properly. We can use the above command as well, and it will execute perfectly. But its structure is not as per our standard procedure. Hence, it needs to be changed. Here is the updated look: Verification Get the name of the install plan from the subscription by running the following command: $ oc -n external-dns-operator \ get subscription external-dns-operator \ --template='{{.status.installplan.name}}{{"\n"}}' Verify that the status of the install plan is Complete by running the following command: $ oc -n external-dns-operator \ get ip <install_plan_name> \ --template='{{.status.phase}}{{"\n"}}
1 parent 889de89 commit 3014b0b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

modules/nw-installing-external-dns-operator-cli.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,17 +95,17 @@ $ oc apply -f subscription.yaml
9595
[source,terminal]
9696
----
9797
$ oc -n external-dns-operator \
98-
get subscription external-dns-operator \
99-
--template='{{.status.installplan.name}}{{"\n"}}'
98+
get subscription external-dns-operator \
99+
--template='{{.status.installplan.name}}{{"\n"}}'
100100
----
101101

102102
. Verify that the status of the install plan is `Complete` by running the following command:
103103
+
104104
[source,terminal]
105105
----
106106
$ oc -n external-dns-operator \
107-
get ip <install_plan_name> \
108-
--template='{{.status.phase}}{{"\n"}}'
107+
get ip <install_plan_name> \
108+
--template='{{.status.phase}}{{"\n"}}'
109109
----
110110

111111
. Verify that the status of the `external-dns-operator` pod is `Running` by running the following command:
@@ -151,4 +151,4 @@ $ oc -n external-dns-operator get csv
151151
----
152152
NAME DISPLAY VERSION REPLACES PHASE
153153
external-dns-operator.v<1.y.z> ExternalDNS Operator <1.y.z> Succeeded
154-
----
154+
----

0 commit comments

Comments
 (0)