We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5edbd0 commit 71487b5Copy full SHA for 71487b5
tests/util/helpers.sh
@@ -115,6 +115,10 @@ _wait_for_istio() {
115
echo "Timed out waiting for $kind $name in namespace $namespace to be created."
116
exit 1
117
fi
118
+ if ! kubectl wait --for=condition=Ready pod --all -n "$namespace" --timeout 60s; then
119
+ echo "Timed out waiting for pods in namespace $namespace to be ready after applying $kind $name."
120
+ exit 1
121
+ fi
122
sleep 2
123
}
124
0 commit comments