Skip to content

Commit

Permalink
bump timeout wait for cilium pods (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
liyihuang committed Jun 24, 2024
1 parent 509e646 commit 38378c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/provisioner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ fi
if [[ "${DISABLE_KUBE_PROXY}" == "true" ]]; then
kubectl -n "${KUBE_PROXY_NAMESPACE}" delete daemonset kube-proxy || true
kubectl -n "${KUBE_PROXY_NAMESPACE}" delete cm kube-proxy || true
kubectl wait --for=condition=Ready pod -l k8s-app=cilium -n "${CILIUM_NAMESPACE}"
kubectl wait --timeout=300s --for=condition=Ready pod -l k8s-app=cilium -n "${CILIUM_NAMESPACE}"
pods=$(kubectl get pods -l k8s-app=cilium -o name -n "${CILIUM_NAMESPACE}")
if [ -n "$pods" ]; then
while IFS= read -r pod; do
Expand Down

0 comments on commit 38378c2

Please sign in to comment.