main.yml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. ---
  2. - fail:
  3. msg: "SELinux is disabled, This deployment type requires that SELinux is enabled."
  4. when:
  5. - (not ansible_selinux or ansible_selinux.status != 'enabled')
  6. - deployment_type == 'openshift-enterprise'
  7. - not openshift_use_crio | default(false)
  8. - name: setup firewall
  9. import_tasks: firewall.yml
  10. #### Disable SWAP #####
  11. # https://docs.openshift.com/container-platform/3.4/admin_guide/overcommit.html#disabling-swap-memory
  12. - name: Check for swap usage
  13. command: grep "^[^#].*swap" /etc/fstab
  14. # grep: match any lines which don't begin with '#' and contain 'swap'
  15. changed_when: false
  16. failed_when: false
  17. register: swap_result
  18. - when:
  19. - swap_result.stdout_lines | length > 0
  20. - openshift_disable_swap | default(true) | bool
  21. block:
  22. - name: Disable swap
  23. command: swapoff --all
  24. - name: Remove swap entries from /etc/fstab
  25. replace:
  26. dest: /etc/fstab
  27. regexp: '(^[^#].*swap.*)'
  28. replace: '# \1'
  29. backup: yes
  30. - name: Add notice about disabling swap
  31. lineinfile:
  32. dest: /etc/fstab
  33. line: '# OpenShift-Ansible Installer disabled swap per overcommit guidelines'
  34. state: present
  35. #### End Disable Swap Block ####
  36. - name: include node installer
  37. include_tasks: install.yml
  38. - name: Restart cri-o
  39. systemd:
  40. name: cri-o
  41. enabled: yes
  42. state: restarted
  43. when: openshift_use_crio | default(false)
  44. - name: restart NetworkManager to ensure resolv.conf is present
  45. systemd:
  46. name: NetworkManager
  47. enabled: yes
  48. state: restarted
  49. when: openshift_node_bootstrap | bool
  50. # The atomic-openshift-node service will set this parameter on
  51. # startup, but if the network service is restarted this setting is
  52. # lost. Reference: https://bugzilla.redhat.com/show_bug.cgi?id=1372388
  53. - sysctl:
  54. name: net.ipv4.ip_forward
  55. value: 1
  56. sysctl_file: "/etc/sysctl.d/99-openshift.conf"
  57. reload: yes
  58. - include_tasks: registry_auth.yml
  59. - name: include standard node config
  60. include_tasks: config.yml
  61. #### Storage class plugins here ####
  62. - name: NFS storage plugin configuration
  63. include_tasks: storage_plugins/nfs.yml
  64. tags:
  65. - nfs
  66. - name: GlusterFS storage plugin configuration
  67. include_tasks: storage_plugins/glusterfs.yml
  68. when: "'glusterfs' in openshift.node.storage_plugin_deps"
  69. - name: Ceph storage plugin configuration
  70. include_tasks: storage_plugins/ceph.yml
  71. when: "'ceph' in openshift.node.storage_plugin_deps"
  72. - name: iSCSI storage plugin configuration
  73. include_tasks: storage_plugins/iscsi.yml
  74. when: "'iscsi' in openshift.node.storage_plugin_deps"
  75. ##### END Storage #####
  76. - include_tasks: config/workaround-bz1331590-ovs-oom-fix.yml
  77. when: openshift_node_use_openshift_sdn | default(true) | bool
  78. - name: include bootstrap node config
  79. include_tasks: bootstrap.yml
  80. when: openshift_node_bootstrap