Skip to content

Commit 2c6a252

Browse files
committed
ci: output more details while waiting for the cluster to stabilize
1 parent 443f9b6 commit 2c6a252

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ echo "Watching deployment status in namespace '$NAMESPACE' (timeout: $TIMEOUT se
1616
while kill -0 "$DEPLOY_PID" 2>/dev/null; do
1717
echo ""
1818
echo "=== $(date): Deployment Status ==="
19-
kubectl get deployments -n "$NAMESPACE" || true
19+
kubectl get deployments -n "$NAMESPACE" -o wide || true
2020
echo "---"
21-
kubectl get pods -n "$NAMESPACE" || true
21+
kubectl get pods -n "$NAMESPACE" -o wide || true
2222

2323
sleep "$INTERVAL"
2424
ELAPSED=$((ELAPSED + INTERVAL))

0 commit comments

Comments
 (0)