Skip to content

Commit e907f15

Browse files
committed
fix: shell check
1 parent f054044 commit e907f15

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

scripts/wait_for_cpd_pod.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ NAMESPACE="cloud-pak-deployer"
66
POD_NAME=$(kubectl get pods -n $NAMESPACE -o jsonpath='{.items[0].metadata.name}')
77
STATUS=""
88
while true; do
9+
# shellcheck disable=SC2086
910
STATUS=$(kubectl get pod $POD_NAME -n $NAMESPACE -o jsonpath='{.status.phase}')
1011
echo "Pod status: $STATUS"
1112
if [[ "$STATUS" == "Succeeded" || "$STATUS" == "Failed" ]]; then

0 commit comments

Comments
 (0)