main.yml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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 }}.crt"
  20. - "system:node:{{ openshift.common.hostname }}.key"
  21. - "system:node:{{ openshift.common.hostname }}.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. | 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. - name: Generate the node client config
  41. command: >
  42. {{ openshift.common.admin_binary }} create-api-client-config
  43. {% for named_ca_certificate in hostvars[openshift_ca_host].openshift.master.named_certificates | default([]) | oo_collect('cafile') %}
  44. --certificate-authority {{ named_ca_certificate }}
  45. {% endfor %}
  46. --certificate-authority={{ openshift_ca_cert }}
  47. --client-dir={{ openshift_node_generated_config_dir }}
  48. --groups=system:nodes
  49. --master={{ hostvars[openshift_ca_host].openshift.master.api_url }}
  50. --signer-cert={{ openshift_ca_cert }}
  51. --signer-key={{ openshift_ca_key }}
  52. --signer-serial={{ openshift_ca_serial }}
  53. --user=system:node:{{ openshift.common.hostname }}
  54. args:
  55. creates: "{{ openshift_node_generated_config_dir }}"
  56. when: node_certs_missing | bool
  57. delegate_to: "{{ openshift_ca_host }}"
  58. - name: Generate the node server certificate
  59. command: >
  60. {{ openshift.common.admin_binary }} ca create-server-cert
  61. --cert={{ openshift_node_generated_config_dir }}/server.crt
  62. --key={{ openshift_generated_configs_dir }}/node-{{ openshift.common.hostname }}/server.key
  63. --overwrite=true
  64. --hostnames={{ openshift.common.all_hostnames |join(",") }}
  65. --signer-cert={{ openshift_ca_cert }}
  66. --signer-key={{ openshift_ca_key }}
  67. --signer-serial={{ openshift_ca_serial }}
  68. args:
  69. creates: "{{ openshift_node_generated_config_dir }}/server.crt"
  70. when: node_certs_missing | bool
  71. delegate_to: "{{ openshift_ca_host}}"
  72. - name: Create local temp directory for syncing certs
  73. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  74. register: node_cert_mktemp
  75. changed_when: False
  76. when: node_certs_missing | bool
  77. delegate_to: localhost
  78. become: no
  79. - name: Create a tarball of the node config directories
  80. command: >
  81. tar -czvf {{ openshift_node_generated_config_dir }}.tgz
  82. --transform 's|system:{{ openshift_node_cert_subdir }}|node|'
  83. -C {{ openshift_node_generated_config_dir }} .
  84. args:
  85. creates: "{{ openshift_node_generated_config_dir }}.tgz"
  86. when: node_certs_missing | bool
  87. delegate_to: "{{ openshift_ca_host }}"
  88. - name: Retrieve the node config tarballs from the master
  89. fetch:
  90. src: "{{ openshift_node_generated_config_dir }}.tgz"
  91. dest: "{{ node_cert_mktemp.stdout }}/"
  92. flat: yes
  93. fail_on_missing: yes
  94. validate_checksum: yes
  95. when: node_certs_missing | bool
  96. delegate_to: "{{ openshift_ca_host }}"
  97. - name: Ensure certificate directory exists
  98. file:
  99. path: "{{ openshift_node_cert_dir }}"
  100. state: directory
  101. when: node_certs_missing | bool
  102. - name: Unarchive the tarball on the node
  103. unarchive:
  104. src: "{{ node_cert_mktemp.stdout }}/{{ openshift_node_cert_subdir }}.tgz"
  105. dest: "{{ openshift_node_cert_dir }}"
  106. when: node_certs_missing | bool
  107. - file: name={{ node_cert_mktemp.stdout }} state=absent
  108. changed_when: False
  109. when: node_certs_missing | bool
  110. delegate_to: localhost
  111. become: no