main.yml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. portal_net: "{{ openshift_portal_net | default(openshift_master_portal_net) | default(None) }}"
  19. - role: node
  20. local_facts:
  21. annotations: "{{ openshift_node_annotations | default(none) }}"
  22. debug_level: "{{ openshift_node_debug_level | default(openshift.common.debug_level) }}"
  23. iptables_sync_period: "{{ openshift_node_iptables_sync_period | default(None) }}"
  24. kubelet_args: "{{ openshift_node_kubelet_args | default(None) }}"
  25. labels: "{{ lookup('oo_option', 'openshift_node_labels') | default( openshift_node_labels | default(none), true) }}"
  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. local_quota_per_fsgroup: "{{ openshift_node_local_quota_per_fsgroup | default(None) }}"
  35. # We have to add tuned-profiles in the same transaction otherwise we run into depsolving
  36. # problems because the rpms don't pin the version properly. This was fixed in 3.1 packaging.
  37. - name: Install Node package
  38. action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-node{{ openshift_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }},tuned-profiles-{{ openshift.common.service_type }}-node{{ openshift_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }} state=present"
  39. when: not openshift.common.is_containerized | bool
  40. - name: Install sdn-ovs package
  41. action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-sdn-ovs{{ openshift_version | oo_image_tag_to_rpm_version(include_dash=True) }} state=present"
  42. when: openshift.common.use_openshift_sdn and not openshift.common.is_containerized | bool
  43. - name: Pull node image
  44. command: >
  45. docker pull {{ openshift.node.node_image }}:{{ openshift_version }}
  46. when: openshift.common.is_containerized | bool
  47. - name: Pull OpenVSwitch image
  48. command: >
  49. docker pull {{ openshift.node.ovs_image }}:{{ openshift_version }}
  50. when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | bool
  51. - name: Install the systemd units
  52. include: systemd_units.yml
  53. - name: Reload systemd units
  54. command: systemctl daemon-reload
  55. when: openshift.common.is_containerized | bool and ( ( install_node_result | changed )
  56. or ( install_ovs_sysconfig | changed ) )
  57. - name: Start and enable openvswitch docker service
  58. service: name=openvswitch.service enabled=yes state=started
  59. when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | bool
  60. register: ovs_start_result
  61. - set_fact:
  62. ovs_service_status_changed: "{{ ovs_start_result | changed }}"
  63. # TODO: add the validate parameter when there is a validation command to run
  64. - name: Create the Node config
  65. template:
  66. dest: "{{ openshift_node_config_file }}"
  67. src: node.yaml.v1.j2
  68. backup: true
  69. owner: root
  70. group: root
  71. mode: 0600
  72. notify:
  73. - restart node
  74. - name: Configure AWS Cloud Provider Settings
  75. lineinfile:
  76. dest: /etc/sysconfig/{{ openshift.common.service_type }}-node
  77. regexp: "{{ item.regex }}"
  78. line: "{{ item.line }}"
  79. create: true
  80. with_items:
  81. - regex: '^AWS_ACCESS_KEY_ID='
  82. line: "AWS_ACCESS_KEY_ID={{ openshift.cloudprovider.aws.access_key }}"
  83. - regex: '^AWS_SECRET_ACCESS_KEY='
  84. line: "AWS_SECRET_ACCESS_KEY={{ openshift.cloudprovider.aws.secret_key }}"
  85. when: "'cloudprovider' in openshift and 'aws' in openshift.cloudprovider and 'kind' in openshift.cloudprovider and openshift.cloudprovider.kind == 'aws' and 'access_key' in openshift.cloudprovider.aws and 'secret_key' in openshift.cloudprovider.aws"
  86. notify:
  87. - restart node
  88. - name: Additional storage plugin configuration
  89. include: storage_plugins/main.yml
  90. # Necessary because when you're on a node that's also a master the master will be
  91. # restarted after the node restarts docker and it will take up to 60 seconds for
  92. # systemd to start the master again
  93. - name: Wait for master API to become available before proceeding
  94. # Using curl here since the uri module requires python-httplib2 and
  95. # wait_for port doesn't provide health information.
  96. command: >
  97. curl --silent --cacert {{ openshift.common.config_base }}/node/ca.crt
  98. {{ openshift_node_master_api_url }}/healthz/ready
  99. register: api_available_output
  100. until: api_available_output.stdout == 'ok'
  101. retries: 120
  102. delay: 1
  103. changed_when: false
  104. when: openshift.common.is_containerized | bool
  105. - name: Start and enable node
  106. service: name={{ openshift.common.service_type }}-node enabled=yes state=started
  107. register: node_start_result
  108. - set_fact:
  109. node_service_status_changed: "{{ node_start_result | changed }}"