config.yml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. ---
  2. - name: Gather and set facts for node hosts
  3. hosts: oo_nodes_to_config
  4. roles:
  5. - openshift_facts
  6. tasks:
  7. # Since the master is generating the node certificates before they are
  8. # configured, we need to make sure to set the node properties beforehand if
  9. # we do not want the defaults
  10. - openshift_facts:
  11. role: "{{ item.role }}"
  12. local_facts: "{{ item.local_facts }}"
  13. with_items:
  14. - role: common
  15. local_facts:
  16. hostname: "{{ openshift_hostname | default(None) }}"
  17. public_hostname: "{{ openshift_public_hostname | default(None) }}"
  18. deployment_type: "{{ openshift_deployment_type }}"
  19. - role: node
  20. local_facts:
  21. labels: "{{ openshift_node_labels | default(None) }}"
  22. annotations: "{{ openshift_node_annotations | default(None) }}"
  23. - name: Check status of node certificates
  24. stat:
  25. path: "/etc/openshift/node/{{ item }}"
  26. with_items:
  27. - "system:node:{{ openshift.common.hostname }}.crt"
  28. - "system:node:{{ openshift.common.hostname }}.key"
  29. - "system:node:{{ openshift.common.hostname }}.kubeconfig"
  30. - ca.crt
  31. - server.key
  32. - server.crt
  33. register: stat_result
  34. - set_fact:
  35. certs_missing: "{{ stat_result.results | map(attribute='stat.exists')
  36. | list | intersect([false])}}"
  37. node_subdir: node-{{ openshift.common.hostname }}
  38. config_dir: /etc/openshift/generated-configs/node-{{ openshift.common.hostname }}
  39. node_cert_dir: /etc/openshift/node
  40. - name: Create temp directory for syncing certs
  41. hosts: localhost
  42. connection: local
  43. sudo: false
  44. gather_facts: no
  45. tasks:
  46. - name: Create local temp directory for syncing certs
  47. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  48. register: mktemp
  49. changed_when: False
  50. - name: Create node certificates
  51. hosts: oo_first_master
  52. vars:
  53. nodes_needing_certs: "{{ hostvars
  54. | oo_select_keys(groups['oo_nodes_to_config']
  55. | default([]))
  56. | oo_filter_list(filter_attr='certs_missing') }}"
  57. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}"
  58. roles:
  59. - openshift_node_certificates
  60. post_tasks:
  61. - name: Create a tarball of the node config directories
  62. command: >
  63. tar -czvf {{ item.config_dir }}.tgz
  64. --transform 's|system:{{ item.node_subdir }}|node|'
  65. -C {{ item.config_dir }} .
  66. args:
  67. creates: "{{ item.config_dir }}.tgz"
  68. with_items: nodes_needing_certs
  69. - name: Retrieve the node config tarballs from the master
  70. fetch:
  71. src: "{{ item.config_dir }}.tgz"
  72. dest: "{{ sync_tmpdir }}/"
  73. flat: yes
  74. fail_on_missing: yes
  75. validate_checksum: yes
  76. with_items: nodes_needing_certs
  77. - name: Configure node instances
  78. hosts: oo_nodes_to_config
  79. vars:
  80. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}"
  81. openshift_node_master_api_url: "{{ hostvars[groups.oo_first_master.0].openshift.master.api_url }}"
  82. pre_tasks:
  83. - name: Ensure certificate directory exists
  84. file:
  85. path: "{{ node_cert_dir }}"
  86. state: directory
  87. # TODO: notify restart openshift-node
  88. # possibly test service started time against certificate/config file
  89. # timestamps in openshift-node to trigger notify
  90. - name: Unarchive the tarball on the node
  91. unarchive:
  92. src: "{{ sync_tmpdir }}/{{ node_subdir }}.tgz"
  93. dest: "{{ node_cert_dir }}"
  94. when: certs_missing
  95. roles:
  96. - openshift_node
  97. - role: fluentd_node
  98. when: openshift.common.use_fluentd | bool
  99. tasks:
  100. - name: Create group for deployment type
  101. group_by: key=oo_nodes_deployment_type_{{ openshift.common.deployment_type }}
  102. changed_when: False
  103. - name: Delete temporary directory on localhost
  104. hosts: localhost
  105. connection: local
  106. sudo: false
  107. gather_facts: no
  108. tasks:
  109. - file: name={{ mktemp.stdout }} state=absent
  110. changed_when: False
  111. # Additional config for online type deployments
  112. - name: Additional instance config
  113. hosts: oo_nodes_deployment_type_online
  114. gather_facts: no
  115. roles:
  116. - os_env_extras
  117. - os_env_extras_node
  118. - name: Set scheduleability
  119. hosts: oo_first_master
  120. vars:
  121. openshift_nodes: "{{ hostvars
  122. | oo_select_keys(groups['oo_nodes_to_config'])
  123. | oo_collect('openshift.common.hostname') }}"
  124. openshift_unscheduleable_nodes: "{{ hostvars
  125. | oo_select_keys(groups['oo_nodes_to_config']
  126. | default([]))
  127. | oo_collect('openshift.common.hostname', {'openshift_scheduleable': False}) }}"
  128. pre_tasks:
  129. - set_fact:
  130. openshift_scheduleable_nodes: "{{ hostvars
  131. | oo_select_keys(groups['oo_nodes_to_config']
  132. | default([]))
  133. | oo_collect('openshift.common.hostname')
  134. | difference(openshift_unscheduleable_nodes) }}"
  135. roles:
  136. - openshift_manage_node