main.yml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. hostname: "{{ openshift_hostname | default(none) }}"
  14. public_hostname: "{{ openshift_public_hostname | default(none) }}"
  15. deployment_type: "{{ openshift_deployment_type }}"
  16. # TODO: Replace this with a lookup or filter plugin.
  17. dns_ip: "{{ openshift_dns_ip
  18. | default(openshift_master_cluster_vip
  19. | default(None if openshift.common.version_greater_than_3_1_or_1_1 | bool else openshift_node_first_master_ip | default(None, true), true), true) }}"
  20. - role: node
  21. local_facts:
  22. annotations: "{{ openshift_node_annotations | default(none) }}"
  23. debug_level: "{{ openshift_node_debug_level | default(openshift.common.debug_level) }}"
  24. docker_log_driver: "{{ lookup( 'oo_option' , 'docker_log_driver' ) | default('',True) }}"
  25. docker_log_options: "{{ lookup( 'oo_option' , 'docker_log_options' ) | default('',True) }}"
  26. iptables_sync_period: "{{ openshift_node_iptables_sync_period | default(None) }}"
  27. kubelet_args: "{{ openshift_node_kubelet_args | default(None) }}"
  28. labels: "{{ lookup('oo_option', 'openshift_node_labels') | default( openshift_node_labels | default(none), true) }}"
  29. portal_net: "{{ openshift_master_portal_net | default(None) }}"
  30. registry_url: "{{ oreg_url | default(none) }}"
  31. schedulable: "{{ openshift_schedulable | default(openshift_scheduleable) | default(None) }}"
  32. sdn_mtu: "{{ openshift_node_sdn_mtu | default(None) }}"
  33. storage_plugin_deps: "{{ osn_storage_plugin_deps | default(None) }}"
  34. set_node_ip: "{{ openshift_set_node_ip | 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.
  37. - name: Install Node package
  38. action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-node{{ openshift_version }},tuned-profiles-{{ openshift.common.service_type }}-node{{ openshift_version }} state=present"
  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
  42. # TODO: add the validate parameter when there is a validation command to run
  43. - name: Create the Node config
  44. template:
  45. dest: "{{ openshift_node_config_file }}"
  46. src: node.yaml.v1.j2
  47. backup: true
  48. notify:
  49. - restart node
  50. - name: Configure Node settings
  51. lineinfile:
  52. dest: /etc/sysconfig/{{ openshift.common.service_type }}-node
  53. regexp: "{{ item.regex }}"
  54. line: "{{ item.line }}"
  55. with_items:
  56. - regex: '^OPTIONS='
  57. line: "OPTIONS=--loglevel={{ openshift.node.debug_level }}"
  58. - regex: '^CONFIG_FILE='
  59. line: "CONFIG_FILE={{ openshift_node_config_file }}"
  60. notify:
  61. - restart node
  62. - stat: path=/etc/sysconfig/docker
  63. register: docker_check
  64. # TODO: Enable secure registry when code available in origin
  65. - name: Secure Registry and Logs Options
  66. lineinfile:
  67. dest: /etc/sysconfig/docker
  68. regexp: '^OPTIONS=.*$'
  69. line: "OPTIONS='--insecure-registry={{ openshift.node.portal_net }} \
  70. {% if ansible_selinux and ansible_selinux.status == '''enabled''' %}--selinux-enabled{% endif %} \
  71. {% if openshift.node.docker_log_driver is defined %} --log-driver {{ openshift.node.docker_log_driver }} {% endif %} \
  72. {% if openshift.node.docker_log_options is defined %} {{ openshift.node.docker_log_options | oo_split() | oo_prepend_strings_in_list('--log-opt ') | join(' ')}} {% endif %} '"
  73. when: docker_check.stat.isreg
  74. notify:
  75. - restart docker
  76. - set_fact:
  77. docker_additional_registries: "{{ lookup('oo_option', 'docker_additional_registries')
  78. | oo_split() | union(['registry.access.redhat.com'])
  79. | difference(['']) }}"
  80. when: openshift.common.deployment_type in ['enterprise', 'openshift-enterprise', 'atomic-enterprise']
  81. - set_fact:
  82. docker_additional_registries: "{{ lookup('oo_option', 'docker_additional_registries')
  83. | oo_split() | difference(['']) }}"
  84. when: openshift.common.deployment_type not in ['enterprise', 'openshift-enterprise', 'atomic-enterprise']
  85. - name: Add personal registries
  86. lineinfile:
  87. dest: /etc/sysconfig/docker
  88. regexp: '^ADD_REGISTRY=.*$'
  89. line: "ADD_REGISTRY='{{ docker_additional_registries
  90. | oo_prepend_strings_in_list('--add-registry ') | join(' ') }}'"
  91. when: docker_check.stat.isreg and docker_additional_registries
  92. notify:
  93. - restart docker
  94. - name: Block registries
  95. lineinfile:
  96. dest: /etc/sysconfig/docker
  97. regexp: '^BLOCK_REGISTRY=.*$'
  98. line: "BLOCK_REGISTRY='{{ lookup('oo_option', 'docker_blocked_registries') | oo_split()
  99. | oo_prepend_strings_in_list('--block-registry ') | join(' ') }}'"
  100. when: docker_check.stat.isreg and
  101. lookup('oo_option', 'docker_blocked_registries') != ''
  102. notify:
  103. - restart docker
  104. - name: Grant access to additional insecure registries
  105. lineinfile:
  106. dest: /etc/sysconfig/docker
  107. regexp: '^INSECURE_REGISTRY=.*'
  108. line: "INSECURE_REGISTRY='{{ lookup('oo_option', 'docker_insecure_registries') | oo_split()
  109. | oo_prepend_strings_in_list('--insecure-registry ') | join(' ') }}'"
  110. when: docker_check.stat.isreg and
  111. lookup('oo_option', 'docker_insecure_registries') != ''
  112. notify:
  113. - restart docker
  114. - name: Additional storage plugin configuration
  115. include: storage_plugins/main.yml
  116. - name: Start and enable node
  117. service: name={{ openshift.common.service_type }}-node enabled=yes state=started
  118. register: start_result
  119. - set_fact:
  120. node_service_status_changed: start_result | changed