Skip to content

Commit

Permalink
install.sh: wait for all kube-ovn-pinger pods to be ready (#4082)
Browse files Browse the repository at this point in the history
Signed-off-by: zhangzujian <zhangzujian.7@gmail.com>
  • Loading branch information
zhangzujian committed May 24, 2024
1 parent d2e3bf6 commit a874aaf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dist/images/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4730,8 +4730,9 @@ for ns in $(kubectl get ns --no-headers -o custom-columns=NAME:.metadata.name);
done
done

kubectl rollout status deployment/coredns -n kube-system --timeout 300s
kubectl rollout status daemonset/kube-ovn-pinger -n kube-system --timeout 300s
kubectl rollout status deployment/coredns -n kube-system --timeout 600s
kubectl wait pod --for=condition=Ready -l app=kube-ovn-pinger -n kube-system --timeout 300s
echo "-------------------------------"
echo ""

Expand Down

0 comments on commit a874aaf

Please sign in to comment.