main.yml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. ---
  2. # TODO: allow for overriding default ports where possible
  3. - fail:
  4. msg: "SELinux is disabled, This deployment type requires that SELinux is enabled."
  5. when: (not ansible_selinux or ansible_selinux.status != 'enabled') and deployment_type in ['enterprise', 'online', 'atomic-enterprise', 'openshift-enterprise']
  6. - name: Set node facts
  7. openshift_facts:
  8. role: "{{ item.role }}"
  9. local_facts: "{{ item.local_facts }}"
  10. with_items:
  11. - role: node
  12. local_facts:
  13. annotations: "{{ openshift_node_annotations | default(none) }}"
  14. debug_level: "{{ openshift_node_debug_level | default(openshift.common.debug_level) }}"
  15. iptables_sync_period: "{{ openshift_node_iptables_sync_period | default(None) }}"
  16. kubelet_args: "{{ openshift_node_kubelet_args | default(None) }}"
  17. labels: "{{ lookup('oo_option', 'openshift_node_labels') | default( openshift_node_labels | default(none), true) }}"
  18. registry_url: "{{ oreg_url | default(none) }}"
  19. schedulable: "{{ openshift_schedulable | default(openshift_scheduleable) | default(None) }}"
  20. sdn_mtu: "{{ openshift_node_sdn_mtu | default(None) }}"
  21. storage_plugin_deps: "{{ osn_storage_plugin_deps | default(None) }}"
  22. set_node_ip: "{{ openshift_set_node_ip | default(None) }}"
  23. node_image: "{{ osn_image | default(None) }}"
  24. ovs_image: "{{ osn_ovs_image | default(None) }}"
  25. proxy_mode: "{{ openshift_node_proxy_mode | default('iptables') }}"
  26. local_quota_per_fsgroup: "{{ openshift_node_local_quota_per_fsgroup | default(None) }}"
  27. dns_ip: "{{ openshift_dns_ip | default(none) | get_dns_ip(hostvars[inventory_hostname])}}"
  28. env_vars: "{{ openshift_node_env_vars | default(None) }}"
  29. # We have to add tuned-profiles in the same transaction otherwise we run into depsolving
  30. # problems because the rpms don't pin the version properly. This was fixed in 3.1 packaging.
  31. - name: Install Node package
  32. action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-node{{ openshift_pkg_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }},tuned-profiles-{{ openshift.common.service_type }}-node{{ openshift_pkg_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }} state=present"
  33. when: not openshift.common.is_containerized | bool
  34. - name: Set atomic-guest tuned profile
  35. command: "tuned-adm profile atomic-guest"
  36. when: openshift.common.is_atomic | bool
  37. - name: Install sdn-ovs package
  38. action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-sdn-ovs{{ openshift_pkg_version | oo_image_tag_to_rpm_version(include_dash=True) }} state=present"
  39. when: openshift.common.use_openshift_sdn and not openshift.common.is_containerized | bool
  40. - name: Pull node image
  41. command: >
  42. docker pull {{ openshift.node.node_image }}:{{ openshift_image_tag }}
  43. register: pull_result
  44. changed_when: "'Downloaded newer image' in pull_result.stdout"
  45. when: openshift.common.is_containerized | bool
  46. - name: Pull OpenVSwitch image
  47. command: >
  48. docker pull {{ openshift.node.ovs_image }}:{{ openshift_image_tag }}
  49. register: pull_result
  50. changed_when: "'Downloaded newer image' in pull_result.stdout"
  51. when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | bool
  52. - name: Install the systemd units
  53. include: systemd_units.yml
  54. # The atomic-openshift-node service will set this parameter on
  55. # startup, but if the network service is restarted this setting is
  56. # lost. Reference: https://bugzilla.redhat.com/show_bug.cgi?id=1372388
  57. - name: Persist net.ipv4.ip_forward sysctl entry
  58. sysctl: name="net.ipv4.ip_forward" value=1 sysctl_set=yes state=present reload=yes
  59. - name: Start and enable openvswitch docker service
  60. service: name=openvswitch.service enabled=yes state=started
  61. when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | bool
  62. register: ovs_start_result
  63. - set_fact:
  64. ovs_service_status_changed: "{{ ovs_start_result | changed }}"
  65. # TODO: add the validate parameter when there is a validation command to run
  66. - name: Create the Node config
  67. template:
  68. dest: "{{ openshift_node_config_file }}"
  69. src: node.yaml.v1.j2
  70. backup: true
  71. owner: root
  72. group: root
  73. mode: 0600
  74. notify:
  75. - restart node
  76. - name: Configure AWS Cloud Provider Settings
  77. lineinfile:
  78. dest: /etc/sysconfig/{{ openshift.common.service_type }}-node
  79. regexp: "{{ item.regex }}"
  80. line: "{{ item.line }}"
  81. create: true
  82. with_items:
  83. - regex: '^AWS_ACCESS_KEY_ID='
  84. line: "AWS_ACCESS_KEY_ID={{ openshift_cloudprovider_aws_access_key | default('') }}"
  85. - regex: '^AWS_SECRET_ACCESS_KEY='
  86. line: "AWS_SECRET_ACCESS_KEY={{ openshift_cloudprovider_aws_secret_key | default('') }}"
  87. when: "openshift_cloudprovider_kind is defined and openshift_cloudprovider_kind == 'aws' and openshift_cloudprovider_aws_access_key is defined and openshift_cloudprovider_aws_secret_key is defined"
  88. notify:
  89. - restart node
  90. - name: Configure Node Environment Variables
  91. lineinfile:
  92. dest: /etc/sysconfig/{{ openshift.common.service_type }}-node
  93. regexp: "^{{ item.key }}="
  94. line: "{{ item.key }}={{ item.value }}"
  95. create: true
  96. with_dict: "{{ openshift.node.env_vars | default({}) }}"
  97. notify:
  98. - restart node
  99. - name: NFS storage plugin configuration
  100. include: storage_plugins/nfs.yml
  101. - name: GlusterFS storage plugin configuration
  102. include: storage_plugins/glusterfs.yml
  103. when: "'glusterfs' in openshift.node.storage_plugin_deps"
  104. - name: Ceph storage plugin configuration
  105. include: storage_plugins/ceph.yml
  106. when: "'ceph' in openshift.node.storage_plugin_deps"
  107. - name: iSCSI storage plugin configuration
  108. include: storage_plugins/iscsi.yml
  109. when: "'iscsi' in openshift.node.storage_plugin_deps"
  110. # Necessary because when you're on a node that's also a master the master will be
  111. # restarted after the node restarts docker and it will take up to 60 seconds for
  112. # systemd to start the master again
  113. - name: Wait for master API to become available before proceeding
  114. # Using curl here since the uri module requires python-httplib2 and
  115. # wait_for port doesn't provide health information.
  116. command: >
  117. curl --silent --cacert {{ openshift.common.config_base }}/node/ca.crt
  118. {{ openshift_node_master_api_url }}/healthz/ready
  119. args:
  120. # Disables the following warning:
  121. # Consider using get_url or uri module rather than running curl
  122. warn: no
  123. register: api_available_output
  124. until: api_available_output.stdout == 'ok'
  125. retries: 120
  126. delay: 1
  127. changed_when: false
  128. when: openshift.common.is_containerized | bool
  129. - name: Start and enable node dep
  130. service: name={{ openshift.common.service_type }}-node-dep enabled=yes state=started
  131. when: openshift.common.is_containerized | bool
  132. - name: Start and enable node
  133. service: name={{ openshift.common.service_type }}-node enabled=yes state=started
  134. register: node_start_result
  135. until: not node_start_result | failed
  136. retries: 1
  137. delay: 30
  138. - set_fact:
  139. node_service_status_changed: "{{ node_start_result | changed }}"