Browse Source

Disable swap space on nodes at install and upgrade

Russell Teague 8 years ago
parent
commit
38e0c9c84f
2 changed files with 54 additions and 0 deletions
  1. 27 0
      roles/openshift_node/tasks/main.yml
  2. 27 0
      roles/openshift_node_upgrade/tasks/main.yml

+ 27 - 0
roles/openshift_node/tasks/main.yml

@@ -34,6 +34,33 @@
         dns_ip: "{{ openshift_dns_ip | default(none) | get_dns_ip(hostvars[inventory_hostname])}}"
         env_vars: "{{ openshift_node_env_vars | default(None) }}"
 
+# https://docs.openshift.com/container-platform/3.4/admin_guide/overcommit.html#disabling-swap-memory
+- name: Check for swap usage
+  command: grep "^[^#].*swap" /etc/fstab
+  # grep: match any lines which don't begin with '#' and contain 'swap'
+  # command: swapon --summary
+  # Alternate option, however if swap entries are in fstab, swap will be
+  # enabled at boot. Grepping fstab should catch a condition when swap was
+  # disabled, but the fstab entries were not removed.
+  changed_when: false
+  failed_when: false
+  register: swap_result
+
+  # Disable Swap Block
+- block:
+
+    - name: Disable swap
+      command: swapoff --all
+
+    - name: Remove swap entries from /etc/fstab
+      lineinfile:
+        dest: /etc/fstab
+        regexp: 'swap'
+        state: absent
+
+  when: swap_result.stdout_lines | length > 0
+  # End Disable Swap Block
+
 # We have to add tuned-profiles in the same transaction otherwise we run into depsolving
 # problems because the rpms don't pin the version properly. This was fixed in 3.1 packaging.
 - name: Install Node package

+ 27 - 0
roles/openshift_node_upgrade/tasks/main.yml

@@ -84,6 +84,33 @@
     value: "{{ oreg_url }}"
   when: oreg_url is defined
 
+# https://docs.openshift.com/container-platform/3.4/admin_guide/overcommit.html#disabling-swap-memory
+- name: Check for swap usage
+  command: grep "^[^#].*swap" /etc/fstab
+  # grep: match any lines which don't begin with '#' and contain 'swap'
+  # command: swapon --summary
+  # Alternate option, however if swap entries are in fstab, swap will be
+  # enabled at boot. Grepping fstab should catch a condition when swap was
+  # disabled, but the fstab entries were not removed.
+  changed_when: false
+  failed_when: false
+  register: swap_result
+
+  # Disable Swap Block
+- block:
+
+  - name: Disable swap
+    command: swapoff --all
+
+  - name: Remove swap entries from /etc/fstab
+    lineinfile:
+      dest: /etc/fstab
+      regexp: 'swap'
+      state: absent
+
+  when: swap_result.stdout_lines | length > 0
+  # End Disable Swap Block
+
 - name: Restart rpm node service
   service:
     name: "{{ openshift.common.service_type }}-node"