Skip to content

Commit 5b29460

Browse files
Update installing-aws-load-balancer-operator-cli.adoc
Verification 1. Get the name of the install plan from the subscription: $ oc -n aws-load-balancer-operator \ get subscription aws-load-balancer-operator \ --template='{{.status.installplan.name}}{{"\n"}}' 2. Check the status of the install plan: $ oc -n aws-load-balancer-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 it's structure is not as per our standard procedure. Hence it needs to be changed. Here is the updated look: Verification 1. Get the name of the install plan from the subscription: $ oc -n aws-load-balancer-operator \ get subscription aws-load-balancer-operator \ --template='{{.status.installplan.name}}{{"\n"}}' 2. Check the status of the install plan: $ oc -n aws-load-balancer-operator \ get ip <install_plan_name> \ --template='{{.status.phase}}{{"\n"}}'
1 parent 6906603 commit 5b29460

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

modules/installing-aws-load-balancer-operator-cli.adoc

Lines changed: 4 additions & 4 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 aws-load-balancer-operator \
98-
get subscription aws-load-balancer-operator \
99-
--template='{{.status.installplan.name}}{{"\n"}}'
98+
get subscription aws-load-balancer-operator \
99+
--template='{{.status.installplan.name}}{{"\n"}}'
100100
----
101101

102102
. Check the status of the install plan:
103103
+
104104
[source,terminal]
105105
----
106106
$ oc -n aws-load-balancer-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
The output must be `Complete`.

0 commit comments

Comments
 (0)