From c50d7f5d31eed05abf1aa5e94574076073d65445 Mon Sep 17 00:00:00 2001 From: Johan Wennerberg Date: Fri, 25 Oct 2024 09:22:32 +0200 Subject: [PATCH] Remove note since RolloutManager is cluster scoped --- content/modules/ROOT/pages/03-bluegreen-rollout.adoc | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/content/modules/ROOT/pages/03-bluegreen-rollout.adoc b/content/modules/ROOT/pages/03-bluegreen-rollout.adoc index f1142f1..abd5226 100644 --- a/content/modules/ROOT/pages/03-bluegreen-rollout.adoc +++ b/content/modules/ROOT/pages/03-bluegreen-rollout.adoc @@ -118,14 +118,9 @@ that the pods are up and running: [.console-input] [source,bash,subs="attributes+,+macros"] ---- -oc get pods -l app=rollouts-demo -n {user}-prod +oc get pods -n {user}-prod ---- -[NOTE] -We are getting pods using the label `app=rollouts-demo` to specifically select pods from the rollout. Remember -the RolloutManager pod is also deployed in the `{user}-prod` namespace. Using the label enables us -to exclude that pod. - The console should return something along the lines of: [.console-output]