Print proxy status when debug fails for root cause (#7736)

This commit is contained in:
Mitch Connors 2020-07-15 13:03:30 -07:00 committed by GitHub
parent edd7f2093f
commit cb788bb993
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -57,6 +57,7 @@ _wait_for_istio() {
local name="$3"
if ! istioctl experimental wait --for=distribution --timeout=5m "$kind" "$name.$namespace"; then
echo "Failed distribution of $kind $name in namespace $namespace"
istioctl ps
exit 1
fi
}