main.yml 2.9 KB

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