Skip to content

Commit

Permalink
updated confidential computing doc
Browse files Browse the repository at this point in the history
  • Loading branch information
naman-msft committed Jan 30, 2025
1 parent 4532f50 commit 120c9dc
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 120c9dc

Please sign in to comment.