c12s-kubespray/roles/kubernetes/preinstall/tasks/0010-swapoff.yml

11 lines
180 B
YAML
Raw Normal View History

2018-06-21 06:17:03 +00:00
---
- name: Remove swapfile from /etc/fstab
mount:
name: swap
fstype: swap
state: absent
- name: Disable swap
command: swapoff -a
when: ansible_swaptotal_mb > 0