mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-18 05:01:21 -03:30
* project: fix ansible-lint name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: ignore jinja template error in names Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: capitalize ansible name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: update notify after name capitalization Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> --------- Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
33 lines
992 B
YAML
33 lines
992 B
YAML
---
|
|
- name: Wait for cilium
|
|
when:
|
|
- needs_cordoning | default(false)
|
|
- kube_network_plugin == 'cilium'
|
|
command: >
|
|
{{ kubectl }}
|
|
wait pod -n kube-system -l k8s-app=cilium
|
|
--field-selector 'spec.nodeName=={{ kube_override_hostname | default(inventory_hostname) }}'
|
|
--for=condition=Ready
|
|
--timeout={{ upgrade_post_cilium_wait_timeout }}
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
|
|
|
- name: Confirm node uncordon
|
|
pause:
|
|
echo: yes
|
|
prompt: "Ready to uncordon node?"
|
|
when:
|
|
- upgrade_node_post_upgrade_confirm
|
|
|
|
- name: Wait before uncordoning node
|
|
pause:
|
|
seconds: "{{ upgrade_node_post_upgrade_pause_seconds }}"
|
|
when:
|
|
- not upgrade_node_post_upgrade_confirm
|
|
- upgrade_node_post_upgrade_pause_seconds != 0
|
|
|
|
- name: Uncordon node
|
|
command: "{{ kubectl }} uncordon {{ kube_override_hostname | default(inventory_hostname) }}"
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
|
when:
|
|
- needs_cordoning | default(false)
|