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