From 120c9dc13e2593fd56117195cccb33eb886802ef Mon Sep 17 00:00:00 2001 From: naman-msft Date: Wed, 29 Jan 2025 16:25:09 -0800 Subject: [PATCH] updated confidential computing doc --- .../confidential-enclave-nodes-aks-get-started.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scenarios/azure-docs/articles/confidential-computing/confidential-enclave-nodes-aks-get-started.md b/scenarios/azure-docs/articles/confidential-computing/confidential-enclave-nodes-aks-get-started.md index 44afe3343..3b735e933 100644 --- a/scenarios/azure-docs/articles/confidential-computing/confidential-enclave-nodes-aks-get-started.md +++ b/scenarios/azure-docs/articles/confidential-computing/confidential-enclave-nodes-aks-get-started.md @@ -237,7 +237,12 @@ oe-helloworld 1/1 1s 23s ``` ```bash -kubectl get pods -l app=oe-helloworld +while [[ $(kubectl get pods -l app=oe-helloworld -o 'jsonpath={..status.phase}') != "Succeeded" ]]; do + sleep 2 +done + +# Fetch the logs +kubectl logs -l app=oe-helloworld ``` Results: