From 447d5f47c9230fc4646145dc224f9acb1d936aa0 Mon Sep 17 00:00:00 2001 From: Prithviraj Patil <116709298+prithvipatil97@users.noreply.github.com> Date: Fri, 11 Jul 2025 21:18:51 +0530 Subject: [PATCH] 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 \ --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 \ --template='{{.status.phase}}{{"\n"}} --- modules/nw-installing-external-dns-operator-cli.adoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/nw-installing-external-dns-operator-cli.adoc b/modules/nw-installing-external-dns-operator-cli.adoc index 827fd85c03e9..295c270c05e7 100644 --- a/modules/nw-installing-external-dns-operator-cli.adoc +++ b/modules/nw-installing-external-dns-operator-cli.adoc @@ -95,8 +95,8 @@ $ oc apply -f subscription.yaml [source,terminal] ---- $ oc -n external-dns-operator \ - get subscription external-dns-operator \ - --template='{{.status.installplan.name}}{{"\n"}}' + 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: @@ -104,8 +104,8 @@ $ oc -n external-dns-operator \ [source,terminal] ---- $ oc -n external-dns-operator \ - get ip \ - --template='{{.status.phase}}{{"\n"}}' + get ip \ + --template='{{.status.phase}}{{"\n"}}' ---- . 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 ---- NAME DISPLAY VERSION REPLACES PHASE external-dns-operator.v<1.y.z> ExternalDNS Operator <1.y.z> Succeeded ----- \ No newline at end of file +----