We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f054044 commit e907f15Copy full SHA for e907f15
scripts/wait_for_cpd_pod.sh
@@ -6,6 +6,7 @@ NAMESPACE="cloud-pak-deployer"
6
POD_NAME=$(kubectl get pods -n $NAMESPACE -o jsonpath='{.items[0].metadata.name}')
7
STATUS=""
8
while true; do
9
+ # shellcheck disable=SC2086
10
STATUS=$(kubectl get pod $POD_NAME -n $NAMESPACE -o jsonpath='{.status.phase}')
11
echo "Pod status: $STATUS"
12
if [[ "$STATUS" == "Succeeded" || "$STATUS" == "Failed" ]]; then
0 commit comments