main.yml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. - 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. # swapoff is a custom module in lib_utils that comments out swap entries in
  15. # /etc/fstab and runs swapoff -a, if necessary.
  16. - name: Disable swap
  17. swapoff: {}
  18. when: openshift_disable_swap | default(true) | bool
  19. - name: include node installer
  20. include_tasks: install.yml
  21. - name: Restart cri-o
  22. systemd:
  23. name: cri-o
  24. enabled: yes
  25. state: restarted
  26. when: openshift_use_crio | bool
  27. register: task_result
  28. failed_when:
  29. - task_result is failed
  30. - ('could not find the requested service' not in task_result.msg|lower)
  31. - name: restart NetworkManager to ensure resolv.conf is present
  32. systemd:
  33. name: NetworkManager
  34. enabled: yes
  35. state: restarted
  36. when: openshift_node_bootstrap | bool
  37. # The atomic-openshift-node service will set this parameter on
  38. # startup, but if the network service is restarted this setting is
  39. # lost. Reference: https://bugzilla.redhat.com/show_bug.cgi?id=1372388
  40. - sysctl:
  41. name: net.ipv4.ip_forward
  42. value: 1
  43. sysctl_file: "/etc/sysctl.d/99-openshift.conf"
  44. reload: yes
  45. - include_tasks: registry_auth.yml
  46. - name: include standard node config
  47. include_tasks: config.yml
  48. #### Storage class plugins here ####
  49. - name: NFS storage plugin configuration
  50. include_tasks: storage_plugins/nfs.yml
  51. tags:
  52. - nfs
  53. - name: GlusterFS storage plugin configuration
  54. include_tasks: storage_plugins/glusterfs.yml
  55. when: "'glusterfs' in osn_storage_plugin_deps"
  56. - name: Ceph storage plugin configuration
  57. include_tasks: storage_plugins/ceph.yml
  58. when: "'ceph' in osn_storage_plugin_deps"
  59. - name: iSCSI storage plugin configuration
  60. include_tasks: storage_plugins/iscsi.yml
  61. when: "'iscsi' in osn_storage_plugin_deps"
  62. ##### END Storage #####
  63. - include_tasks: config/workaround-bz1331590-ovs-oom-fix.yml
  64. when: openshift_node_use_openshift_sdn | default(true) | bool