main.yml 2.5 KB

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