From 9ce5bf245d2a083b785003d24d0f68b00109a146 Mon Sep 17 00:00:00 2001 From: Artem Glazychev Date: Thu, 16 Feb 2023 14:48:22 +0700 Subject: [PATCH] Add vl3-nses ready wait Signed-off-by: Artem Glazychev --- examples/heal/vl3-nse-death/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/heal/vl3-nse-death/README.md b/examples/heal/vl3-nse-death/README.md index 57613e0784d8..7de68bc83299 100644 --- a/examples/heal/vl3-nse-death/README.md +++ b/examples/heal/vl3-nse-death/README.md @@ -15,6 +15,11 @@ Wait for clients to be ready: kubectl wait -n ns-vl3-nse-death --for=condition=ready --timeout=1m pod -l app=alpine ``` +Wait for vl3-nses to be ready: +```bash +kubectl wait --for=condition=ready --timeout=1m pod -l app=nse-vl3-vpp -n ns-vl3-nse-death +``` + Find all nscs: ```bash nscs=$(kubectl get pods -l app=alpine -o go-template --template="{{range .items}}{{.metadata.name}} {{end}}" -n ns-vl3-nse-death)