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

20 lines
418 B
YAML
Raw Normal View History

2018-06-21 06:17:03 +00:00
---
- name: Remove swapfile from /etc/fstab
mount:
name: "{{ item }}"
2018-06-21 06:17:03 +00:00
fstype: swap
state: absent
with_items:
- swap
- none
2018-06-21 06:17:03 +00:00
2019-02-14 10:35:17 +00:00
# kubelet fails even if ansible_swaptotal_mb = 0
- name: check swap
command: /sbin/swapon -s
register: swapon
changed_when: no
2018-06-21 06:17:03 +00:00
- name: Disable swap
2019-02-14 10:35:17 +00:00
command: /sbin/swapoff -a
when: swapon.stdout
ignore_errors: "{{ ansible_check_mode }}" # noqa ignore-errors