main.yml 2.9 KB

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