Skip to content

Commit 5adf576

Browse files
committed
even more debug
1 parent a0f326f commit 5adf576

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.gitlab-ci.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -679,15 +679,21 @@ Helm-Deploy Latest dCache Golden Release:
679679
echo "========================================================="
680680
echo "=== FINAL POD STATES ==="
681681
kubectl -n ${K8S_NAMESPACE} get pods -o wide
682-
682+
683+
echo "=== INIT CONTAINER LOGS (init-host-certs) ==="
684+
for pod in old-store-pool-d-0 old-store-pool-f-0; do
685+
echo "--- $pod ---"
686+
kubectl -n ${K8S_NAMESPACE} logs $pod -c init-host-certs --tail=100 || echo "(no logs available)"
687+
done
688+
683689
echo "=== DETAILED DESCRIPTION OF UNREADY POOLS ==="
684690
kubectl -n ${K8S_NAMESPACE} describe statefulset old-store-pool-d || true
685691
kubectl -n ${K8S_NAMESPACE} describe statefulset old-store-pool-f || true
686692
kubectl -n ${K8S_NAMESPACE} describe pods -l app.kubernetes.io/instance=old-store || true
687-
693+
688694
echo "=== RECENT KUBERNETES EVENTS ==="
689695
kubectl -n ${K8S_NAMESPACE} get events --sort-by='.metadata.creationTimestamp' | tail -n 40
690-
696+
691697
exit $HELM_EXIT_CODE
692698
fi
693699
- echo "Deployment successful."

0 commit comments

Comments
 (0)