use swapon -s (#4216)

This commit is contained in:
hikoz 2019-02-14 19:35:17 +09:00 committed by Kubernetes Prow Robot
parent 8872b2e0c6
commit e03588f431

View file

@ -8,6 +8,11 @@
- swap
- none
# kubelet fails even if ansible_swaptotal_mb = 0
- name: check swap
command: /sbin/swapon -s
register: swapon
changed_when: no
- name: Disable swap
command: swapoff -a
when: ansible_swaptotal_mb > 0
command: /sbin/swapoff -a
when: swapon.stdout != ""