main.yml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. ---
  2. - name: Ensure CA certificate exists on openshift_ca_host
  3. stat:
  4. path: "{{ openshift_ca_cert }}"
  5. get_checksum: false
  6. get_attributes: false
  7. get_mime: false
  8. register: g_ca_cert_stat_result
  9. delegate_to: "{{ openshift_ca_host }}"
  10. run_once: true
  11. - fail:
  12. msg: >
  13. CA certificate {{ openshift_ca_cert }} doesn't exist on CA host
  14. {{ openshift_ca_host }}. Apply 'openshift_ca' role to
  15. {{ openshift_ca_host }}.
  16. when: not g_ca_cert_stat_result.stat.exists | bool
  17. run_once: true
  18. - name: Check status of node certificates
  19. stat:
  20. path: "{{ openshift.common.config_base }}/node/{{ item }}"
  21. get_checksum: false
  22. get_attributes: false
  23. get_mime: false
  24. with_items:
  25. - "system:node:{{ openshift.common.hostname | lower }}.crt"
  26. - "system:node:{{ openshift.common.hostname | lower }}.key"
  27. - "system:node:{{ openshift.common.hostname | lower }}.kubeconfig"
  28. - ca.crt
  29. - server.key
  30. - server.crt
  31. register: g_node_cert_stat_result
  32. when: not openshift_certificates_redeploy | default(false) | bool
  33. - set_fact:
  34. node_certs_missing: "{{ true if openshift_certificates_redeploy | default(false) | bool
  35. else (False in (g_node_cert_stat_result.results
  36. | default({})
  37. | lib_utils_oo_collect(attribute='stat.exists')
  38. | list)) }}"
  39. - name: Create openshift_generated_configs_dir if it does not exist
  40. file:
  41. path: "{{ openshift_generated_configs_dir }}"
  42. state: directory
  43. mode: 0700
  44. when: node_certs_missing | bool
  45. delegate_to: "{{ openshift_ca_host }}"
  46. - find:
  47. paths: "{{ openshift.common.config_base }}/master/legacy-ca/"
  48. patterns: ".*-ca.crt"
  49. use_regex: true
  50. register: g_master_legacy_ca_result
  51. delegate_to: "{{ openshift_ca_host }}"
  52. - name: Generate the node client config
  53. command: >
  54. {{ hostvars[openshift_ca_host]['first_master_client_binary'] }} adm create-api-client-config
  55. {% for named_ca_certificate in hostvars[openshift_ca_host].openshift.master.named_certificates | default([]) | lib_utils_oo_collect('cafile') %}
  56. --certificate-authority {{ named_ca_certificate }}
  57. {% endfor %}
  58. {% for legacy_ca_certificate in g_master_legacy_ca_result.files | default([]) | lib_utils_oo_collect('path') %}
  59. --certificate-authority {{ legacy_ca_certificate }}
  60. {% endfor %}
  61. --certificate-authority={{ openshift_ca_cert }}
  62. --client-dir={{ openshift_generated_configs_dir }}/node-{{ hostvars[item].openshift.common.hostname | lower }}
  63. --groups=system:nodes
  64. --master={{ hostvars[openshift_ca_host].openshift.master.api_url }}
  65. --signer-cert={{ openshift_ca_cert }}
  66. --signer-key={{ openshift_ca_key }}
  67. --signer-serial={{ openshift_ca_serial }}
  68. --user=system:node:{{ hostvars[item].openshift.common.hostname | lower }}
  69. --expire-days={{ openshift_node_cert_expire_days }}
  70. args:
  71. creates: "{{ openshift_generated_configs_dir }}/node-{{ hostvars[item].openshift.common.hostname | lower }}"
  72. with_items: "{{ hostvars
  73. | lib_utils_oo_select_keys(groups['oo_nodes_to_config'])
  74. | lib_utils_oo_collect(attribute='inventory_hostname', filters={'node_certs_missing':True}) }}"
  75. delegate_to: "{{ openshift_ca_host }}"
  76. run_once: true
  77. - name: Generate the node server certificate
  78. command: >
  79. {{ hostvars[openshift_ca_host]['first_master_client_binary'] }} adm ca create-server-cert
  80. --cert={{ openshift_generated_configs_dir }}/node-{{ hostvars[item].openshift.common.hostname | lower }}/server.crt
  81. --key={{ openshift_generated_configs_dir }}/node-{{ hostvars[item].openshift.common.hostname | lower }}/server.key
  82. --expire-days={{ openshift_node_cert_expire_days }}
  83. --overwrite=true
  84. --hostnames={{ hostvars[item].openshift.common.hostname }},{{ hostvars[item].openshift.common.hostname | lower }},{{ hostvars[item].openshift.common.public_hostname }},{{ hostvars[item].openshift.common.public_hostname | lower }},{{ hostvars[item].openshift.common.ip }},{{ hostvars[item].openshift.common.public_ip }}
  85. --signer-cert={{ openshift_ca_cert }}
  86. --signer-key={{ openshift_ca_key }}
  87. --signer-serial={{ openshift_ca_serial }}
  88. args:
  89. creates: "{{ openshift_generated_configs_dir }}/node-{{ hostvars[item].openshift.common.hostname | lower }}/server.crt"
  90. with_items: "{{ hostvars
  91. | lib_utils_oo_select_keys(groups['oo_nodes_to_config'])
  92. | lib_utils_oo_collect(attribute='inventory_hostname', filters={'node_certs_missing':True}) }}"
  93. delegate_to: "{{ openshift_ca_host }}"
  94. run_once: true
  95. - name: Create a tarball of the node config directories
  96. command: >
  97. tar -czvf {{ openshift_node_generated_config_dir }}.tgz
  98. --transform 's|system:{{ openshift_node_cert_subdir }}|node|'
  99. -C {{ openshift_node_generated_config_dir }} .
  100. args:
  101. creates: "{{ openshift_node_generated_config_dir }}.tgz"
  102. # Disables the following warning:
  103. # Consider using unarchive module rather than running tar
  104. warn: no
  105. when: node_certs_missing | bool
  106. delegate_to: "{{ openshift_ca_host }}"
  107. - name: Retrieve the node config tarballs from the master
  108. fetch:
  109. src: "{{ openshift_node_generated_config_dir }}.tgz"
  110. dest: "/tmp"
  111. fail_on_missing: yes
  112. validate_checksum: yes
  113. when: node_certs_missing | bool
  114. delegate_to: "{{ openshift_ca_host }}"
  115. - name: Ensure certificate directory exists
  116. file:
  117. path: "{{ openshift_node_cert_dir }}"
  118. state: directory
  119. when: node_certs_missing | bool
  120. - name: Unarchive the tarball on the node
  121. unarchive:
  122. src: "/tmp/{{ inventory_hostname }}/{{ openshift_node_generated_config_dir }}.tgz"
  123. dest: "{{ openshift_node_cert_dir }}"
  124. when: node_certs_missing | bool
  125. - name: Delete local temp directory
  126. local_action: file path="/tmp/{{ inventory_hostname }}" state=absent
  127. changed_when: False
  128. when: node_certs_missing | bool
  129. - name: Copy OpenShift CA to system CA trust
  130. copy:
  131. src: "{{ item.cert }}"
  132. dest: "/etc/pki/ca-trust/source/anchors/{{ item.id }}-{{ item.cert | basename }}"
  133. remote_src: yes
  134. with_items:
  135. - id: openshift
  136. cert: "{{ openshift_node_cert_dir }}/ca.crt"
  137. notify:
  138. - update ca trust