main.yml 6.0 KB

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