config.yml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. resources_cpu: "{{ openshift_node_resources_cpu | default(None) }}"
  22. resources_memory: "{{ openshift_node_resources_memory | default(None) }}"
  23. pod_cidr: "{{ openshift_node_pod_cidr | default(None) }}"
  24. labels: "{{ openshift_node_labels | default(None) }}"
  25. annotations: "{{ openshift_node_annotations | default(None) }}"
  26. - name: Check status of node certificates
  27. stat:
  28. path: "{{ item }}"
  29. with_items:
  30. - "/etc/openshift/node/node.key"
  31. - "/etc/openshift/node/node.kubeconfig"
  32. - "/etc/openshift/node/ca.crt"
  33. - "/etc/openshift/node/server.key"
  34. register: stat_result
  35. - set_fact:
  36. certs_missing: "{{ stat_result.results | map(attribute='stat.exists')
  37. | list | intersect([false])}}"
  38. node_subdir: node-{{ openshift.common.hostname }}
  39. config_dir: /etc/openshift/generated-configs/node-{{ openshift.common.hostname }}
  40. node_cert_dir: /etc/openshift/node
  41. - name: Create temp directory for syncing certs
  42. hosts: localhost
  43. connection: local
  44. sudo: false
  45. gather_facts: no
  46. tasks:
  47. - name: Create local temp directory for syncing certs
  48. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  49. register: mktemp
  50. changed_when: False
  51. - name: Register nodes
  52. hosts: oo_first_master
  53. vars:
  54. nodes_needing_certs: "{{ hostvars
  55. | oo_select_keys(groups['oo_nodes_to_config'])
  56. | oo_filter_list(filter_attr='certs_missing') }}"
  57. openshift_nodes: "{{ hostvars
  58. | oo_select_keys(groups['oo_nodes_to_config']) }}"
  59. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}"
  60. roles:
  61. - openshift_register_nodes
  62. post_tasks:
  63. - name: Create a tarball of the node config directories
  64. command: >
  65. tar -czvf {{ item.config_dir }}.tgz ./
  66. --transform 's|system:{{ item.node_subdir }}|node|'
  67. -C {{ item.config_dir }} .
  68. args:
  69. creates: "{{ item.config_dir }}.tgz"
  70. with_items: nodes_needing_certs
  71. - name: Retrieve the node config tarballs from the master
  72. fetch:
  73. src: "{{ item.config_dir }}.tgz"
  74. dest: "{{ sync_tmpdir }}/"
  75. flat: yes
  76. fail_on_missing: yes
  77. validate_checksum: yes
  78. with_items: nodes_needing_certs
  79. - name: Configure node instances
  80. hosts: oo_nodes_to_config
  81. vars:
  82. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}"
  83. openshift_node_master_api_url: "{{ hostvars[openshift_first_master].openshift.master.api_url }}"
  84. pre_tasks:
  85. - name: Ensure certificate directory exists
  86. file:
  87. path: "{{ node_cert_dir }}"
  88. state: directory
  89. # TODO: notify restart openshift-node
  90. # possibly test service started time against certificate/config file
  91. # timestamps in openshift-node to trigger notify
  92. - name: Unarchive the tarball on the node
  93. unarchive:
  94. src: "{{ sync_tmpdir }}/{{ node_subdir }}.tgz"
  95. dest: "{{ node_cert_dir }}"
  96. when: certs_missing
  97. roles:
  98. - openshift_node
  99. - role: fluentd_node
  100. when: openshift.common.use_fluentd | bool
  101. tasks:
  102. - name: Create group for deployment type
  103. group_by: key=oo_nodes_deployment_type_{{ openshift.common.deployment_type }}
  104. changed_when: False
  105. - name: Delete the temporary directory on the master
  106. hosts: oo_first_master
  107. gather_facts: no
  108. vars:
  109. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}"
  110. tasks:
  111. - file: name={{ sync_tmpdir }} state=absent
  112. changed_when: False
  113. - name: Delete temporary directory on localhost
  114. hosts: localhost
  115. connection: local
  116. sudo: false
  117. gather_facts: no
  118. tasks:
  119. - file: name={{ mktemp.stdout }} state=absent
  120. changed_when: False
  121. # Additional config for online type deployments
  122. - name: Additional instance config
  123. hosts: oo_nodes_deployment_type_online
  124. gather_facts: no
  125. roles:
  126. - os_env_extras
  127. - os_env_extras_node