c12s-kubespray/roles/kubernetes/preinstall/tasks/swapoff.yml
2018-06-21 08:15:01 +00:00

11 lines
180 B
YAML

---
- name: Remove swapfile from /etc/fstab
mount:
name: swap
fstype: swap
state: absent
- name: Disable swap
command: swapoff -a
when: ansible_swaptotal_mb > 0