main.yml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 | bool
  8. - import_tasks: dnsmasq_install.yml
  9. - import_tasks: dnsmasq.yml
  10. - name: setup firewall
  11. import_tasks: firewall.yml
  12. - name: Update journald config
  13. import_tasks: journald.yml
  14. #### Disable SWAP #####
  15. # https://docs.openshift.com/container-platform/3.4/admin_guide/overcommit.html#disabling-swap-memory
  16. # swapoff is a custom module in lib_utils that comments out swap entries in
  17. # /etc/fstab and runs swapoff -a, if necessary.
  18. - name: Disable swap
  19. swapoff: {}
  20. when: openshift_disable_swap | default(true) | bool
  21. - name: include node installer
  22. import_tasks: install.yml
  23. - name: Restart cri-o
  24. systemd:
  25. name: cri-o
  26. enabled: yes
  27. state: restarted
  28. when: openshift_use_crio | bool
  29. register: task_result
  30. failed_when:
  31. - task_result is failed
  32. - ('could not find the requested service' not in task_result.msg|lower)
  33. - name: restart NetworkManager to ensure resolv.conf is present
  34. systemd:
  35. name: NetworkManager
  36. enabled: yes
  37. state: restarted
  38. # The atomic-openshift-node service will set this parameter on
  39. # startup, but if the network service is restarted this setting is
  40. # lost. Reference: https://bugzilla.redhat.com/show_bug.cgi?id=1372388
  41. - sysctl:
  42. name: net.ipv4.ip_forward
  43. value: 1
  44. sysctl_file: "/etc/sysctl.d/99-openshift.conf"
  45. reload: yes
  46. # Required in some selinux policy versions see
  47. # https://bugzilla.redhat.com/show_bug.cgi?id=1587825
  48. # https://bugzilla.redhat.com/show_bug.cgi?id=1549765
  49. - name: Setting sebool container_manage_cgroup
  50. seboolean:
  51. name: container_manage_cgroup
  52. state: yes
  53. persistent: yes
  54. - import_tasks: registry_auth.yml
  55. - name: include standard node config
  56. import_tasks: config.yml
  57. #### Storage class plugins here ####
  58. - name: NFS storage plugin configuration
  59. import_tasks: storage_plugins/nfs.yml
  60. - name: GlusterFS storage plugin configuration
  61. import_tasks: glusterfs.yml
  62. when: "'glusterfs' in osn_storage_plugin_deps"
  63. - name: Ceph storage plugin configuration
  64. import_tasks: storage_plugins/ceph.yml
  65. when: "'ceph' in osn_storage_plugin_deps"
  66. - name: iSCSI storage plugin configuration
  67. import_tasks: storage_plugins/iscsi.yml
  68. when: "'iscsi' in osn_storage_plugin_deps"
  69. ##### END Storage #####