main.yml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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: common
  12. local_facts:
  13. # TODO: Replace this with a lookup or filter plugin.
  14. # TODO: Move this to the node role
  15. dns_ip: "{{ openshift_dns_ip
  16. | default(openshift_master_cluster_vip
  17. | default(None if openshift.common.version_gte_3_1_or_1_1 | bool else openshift_node_first_master_ip | default(None, true), true), true) }}"
  18. - role: node
  19. local_facts:
  20. annotations: "{{ openshift_node_annotations | default(none) }}"
  21. debug_level: "{{ openshift_node_debug_level | default(openshift.common.debug_level) }}"
  22. iptables_sync_period: "{{ openshift_node_iptables_sync_period | default(None) }}"
  23. kubelet_args: "{{ openshift_node_kubelet_args | default(None) }}"
  24. labels: "{{ lookup('oo_option', 'openshift_node_labels') | default( openshift_node_labels | default(none), true) }}"
  25. portal_net: "{{ openshift_master_portal_net | default(None) }}"
  26. registry_url: "{{ oreg_url | default(none) }}"
  27. schedulable: "{{ openshift_schedulable | default(openshift_scheduleable) | default(None) }}"
  28. sdn_mtu: "{{ openshift_node_sdn_mtu | default(None) }}"
  29. storage_plugin_deps: "{{ osn_storage_plugin_deps | default(None) }}"
  30. set_node_ip: "{{ openshift_set_node_ip | default(None) }}"
  31. node_image: "{{ osn_image | default(None) }}"
  32. ovs_image: "{{ osn_ovs_image | default(None) }}"
  33. proxy_mode: "{{ openshift_node_proxy_mode | default('iptables') }}"
  34. # We have to add tuned-profiles in the same transaction otherwise we run into depsolving
  35. # problems because the rpms don't pin the version properly. This was fixed in 3.1 packaging.
  36. - name: Install Node package
  37. action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-node{{ openshift_version }},tuned-profiles-{{ openshift.common.service_type }}-node{{ openshift_version }} state=present"
  38. when: not openshift.common.is_containerized | bool
  39. - name: Install sdn-ovs package
  40. action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-sdn-ovs{{ openshift_version }} state=present"
  41. when: openshift.common.use_openshift_sdn and not openshift.common.is_containerized | bool
  42. - name: Pull node image
  43. command: >
  44. docker pull {{ openshift.node.node_image }}:{{ openshift_version }}
  45. when: openshift.common.is_containerized | bool
  46. - name: Pull OpenVSwitch image
  47. command: >
  48. docker pull {{ openshift.node.ovs_image }}:{{ openshift_version }}
  49. when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | bool
  50. - name: Install Node docker service file
  51. template:
  52. dest: "/etc/systemd/system/{{ openshift.common.service_type }}-node.service"
  53. src: openshift.docker.node.service
  54. register: install_node_result
  55. when: openshift.common.is_containerized | bool
  56. - name: Create the openvswitch service env file
  57. template:
  58. src: openvswitch.sysconfig.j2
  59. dest: /etc/sysconfig/openvswitch
  60. when: openshift.common.is_containerized | bool
  61. register: install_ovs_sysconfig
  62. - name: Install OpenvSwitch docker service file
  63. template:
  64. dest: "/etc/systemd/system/openvswitch.service"
  65. src: openvswitch.docker.service
  66. when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | bool
  67. notify:
  68. - restart openvswitch
  69. - name: Reload systemd units
  70. command: systemctl daemon-reload
  71. when: openshift.common.is_containerized | bool and ( ( install_node_result | changed )
  72. or ( install_ovs_sysconfig | changed ) )
  73. - name: Start and enable openvswitch docker service
  74. service: name=openvswitch.service enabled=yes state=started
  75. when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | bool
  76. register: ovs_start_result
  77. - set_fact:
  78. ovs_service_status_changed: "{{ ovs_start_result | changed }}"
  79. # TODO: add the validate parameter when there is a validation command to run
  80. - name: Create the Node config
  81. template:
  82. dest: "{{ openshift_node_config_file }}"
  83. src: node.yaml.v1.j2
  84. backup: true
  85. owner: root
  86. group: root
  87. mode: 0600
  88. notify:
  89. - restart node
  90. - name: Configure Node settings
  91. lineinfile:
  92. dest: /etc/sysconfig/{{ openshift.common.service_type }}-node
  93. regexp: "{{ item.regex }}"
  94. line: "{{ item.line }}"
  95. create: true
  96. with_items:
  97. - regex: '^OPTIONS='
  98. line: "OPTIONS=--loglevel={{ openshift.node.debug_level }}"
  99. - regex: '^CONFIG_FILE='
  100. line: "CONFIG_FILE={{ openshift_node_config_file }}"
  101. - regex: '^IMAGE_VERSION='
  102. line: "IMAGE_VERSION={{ openshift_version }}"
  103. notify:
  104. - restart node
  105. - name: Additional storage plugin configuration
  106. include: storage_plugins/main.yml
  107. # Necessary because when you're on a node that's also a master the master will be
  108. # restarted after the node restarts docker and it will take up to 60 seconds for
  109. # systemd to start the master again
  110. - name: Wait for master API to become available before proceeding
  111. # Using curl here since the uri module requires python-httplib2 and
  112. # wait_for port doesn't provide health information.
  113. command: >
  114. curl -k --silent {{ openshift_node_master_api_url }}/healthz/ready
  115. register: api_available_output
  116. until: api_available_output.stdout == 'ok'
  117. retries: 120
  118. delay: 1
  119. changed_when: false
  120. when: openshift.common.is_containerized | bool
  121. - name: Start and enable node
  122. service: name={{ openshift.common.service_type }}-node enabled=yes state=started
  123. register: node_start_result
  124. - set_fact:
  125. node_service_status_changed: "{{ node_start_result | changed }}"