From 4db22dcddfbb65f8f57da6736c562e55b42525b3 Mon Sep 17 00:00:00 2001 From: Prithviraj Patil <116709298+prithvipatil97@users.noreply.github.com> Date: Wed, 9 Jul 2025 00:18:58 +0530 Subject: [PATCH] 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 \ --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 \ --template='{{.status.phase}}{{"\n"}}' --- modules/installing-aws-load-balancer-operator-cli.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/installing-aws-load-balancer-operator-cli.adoc b/modules/installing-aws-load-balancer-operator-cli.adoc index 658f3df434..1bc5b5413d 100644 --- a/modules/installing-aws-load-balancer-operator-cli.adoc +++ b/modules/installing-aws-load-balancer-operator-cli.adoc @@ -95,8 +95,8 @@ $ oc apply -f subscription.yaml [source,terminal] ---- $ oc -n aws-load-balancer-operator \ - get subscription aws-load-balancer-operator \ - --template='{{.status.installplan.name}}{{"\n"}}' + get subscription aws-load-balancer-operator \ + --template='{{.status.installplan.name}}{{"\n"}}' ---- . Check the status of the install plan: @@ -104,8 +104,8 @@ $ oc -n aws-load-balancer-operator \ [source,terminal] ---- $ oc -n aws-load-balancer-operator \ - get ip \ - --template='{{.status.phase}}{{"\n"}}' + get ip \ + --template='{{.status.phase}}{{"\n"}}' ---- + The output must be `Complete`.