Browse Source

Add manage swap on the worker node

pull/2903/head
rongzhang 6 years ago
parent
commit
3232e2743e
3 changed files with 16 additions and 0 deletions
  1. 4
      roles/kubernetes/preinstall/tasks/main.yml
  2. 10
      roles/kubernetes/preinstall/tasks/swapoff.yml
  3. 2
      roles/kubespray-defaults/defaults/main.yaml

4
roles/kubernetes/preinstall/tasks/main.yml

@ -1,4 +1,8 @@
---
# Disable swap
- import_tasks: swapoff.yml
when: disable_swap
- import_tasks: verify-settings.yml
tags:
- asserts

10
roles/kubernetes/preinstall/tasks/swapoff.yml

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

2
roles/kubespray-defaults/defaults/main.yaml

@ -12,6 +12,8 @@ kube_api_anonymous_auth: false
# Default value, but will be set to true automatically if detected
is_atomic: false
# optional disable the swap
disable_swap: false
## Change this to use another Kubernetes version, e.g. a current beta release
kube_version: v1.10.2

|||||||
100:0
Loading…
Cancel
Save