config.yml 4.7 KB

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