2016-12-09 18:44:52 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Cordon node
|
2017-02-14 16:08:44 +00:00
|
|
|
command: "{{ bin_dir }}/kubectl cordon {{ ansible_hostname }}"
|
2016-12-09 18:44:52 +00:00
|
|
|
delegate_to: "{{ groups['kube-master'][0] }}"
|
|
|
|
|
|
|
|
- name: Drain node
|
2017-02-14 16:08:44 +00:00
|
|
|
command: "{{ bin_dir }}/kubectl drain --force --ignore-daemonsets --grace-period 30 --delete-local-data {{ ansible_hostname }}"
|
2016-12-09 18:44:52 +00:00
|
|
|
delegate_to: "{{ groups['kube-master'][0] }}"
|
|
|
|
|
|
|
|
- name: Sleep for grace period for draining
|
2016-12-13 18:43:31 +00:00
|
|
|
pause: seconds=30
|