1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

add debug info on timeout

This commit is contained in:
Jim Bugwadia 2020-10-22 12:30:24 -07:00
parent 062d794cad
commit 2ba2222f4e

View file

@ -20,6 +20,9 @@ monitor_timeout() {
local -r wait_pid="$1"
sleep "${timeout}"
echo "Timeout ${timeout} exceeded" >&2
kubectl --namespace "${namespace}" get pods
docker images | grep "kyverno"
kubectl --namespace "${namespace}" logs -l app=kyverno
kill "${wait_pid}"
}