Check the latest events:
kubectl get events -A --sort-by=.lastTimestampCheck the conditions:
go run github.com/guettli/check-conditions@latest allCheck with clusterctl:
clusterctl describe cluster -n cluster my-clusterCheck the logs. List all logs from all deployments. Show the logs of the last ten minutes:
kubectl get deployment -A --no-headers | while read -r ns d _; do echo; echo "====== $ns $d"; kubectl logs --since=10m -n $ns deployment/$d; done