Add wait for kubectl get ds after upgrades (#5433)

This commit is contained in:
Maxime Guyot 2019-12-11 20:23:55 +01:00 committed by Kubernetes Prow Robot
parent 95cf18ff00
commit 815eebf1d7

View file

@ -18,6 +18,10 @@
- name: Check current nodeselector for kube-proxy daemonset
shell: "{{ bin_dir }}/kubectl --kubeconfig {{ kube_config_dir }}/admin.conf get ds kube-proxy --namespace=kube-system -o jsonpath='{.spec.template.spec.nodeSelector.beta.kubernetes.io/os}'"
register: current_kube_proxy_state
retries: 60
delay: 5
until: current_kube_proxy_state is succeeded
- name: Apply nodeselector patch for kube-proxy daemonset
shell: "{{ bin_dir }}/kubectl --kubeconfig {{ kube_config_dir }}/admin.conf patch ds kube-proxy --namespace=kube-system --type=strategic -p \"$(cat nodeselector-os-linux-patch.json)\""