|
@@ -39,31 +39,43 @@
|
|
|
when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
|
|
|
delegate_to: "{{ openshift_ca_host }}"
|
|
|
|
|
|
-- file:
|
|
|
- src: "{{ openshift_master_config_dir }}/{{ item }}"
|
|
|
- dest: "{{ openshift_master_generated_config_dir }}/{{ item }}"
|
|
|
- state: hard
|
|
|
- with_items:
|
|
|
- - ca.crt
|
|
|
- - ca.key
|
|
|
- - ca.serial.txt
|
|
|
- when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
|
|
|
- delegate_to: "{{ openshift_ca_host }}"
|
|
|
-
|
|
|
-- name: Create the master certificates if they do not already exist
|
|
|
+- name: Create the master server certificate
|
|
|
command: >
|
|
|
- {{ openshift.common.client_binary }} adm create-master-certs
|
|
|
+ {{ openshift.common.client_binary }} adm ca create-server-cert
|
|
|
{% for named_ca_certificate in openshift.master.named_certificates | default([]) | oo_collect('cafile') %}
|
|
|
--certificate-authority {{ named_ca_certificate }}
|
|
|
{% endfor %}
|
|
|
--hostnames={{ openshift.common.all_hostnames | join(',') }}
|
|
|
- --master={{ openshift.master.api_url }}
|
|
|
- --public-master={{ openshift.master.public_api_url }}
|
|
|
- --cert-dir={{ openshift_master_generated_config_dir }}
|
|
|
+ --cert={{ openshift_master_generated_config_dir }}/master.server.crt
|
|
|
+ --key={{ openshift_master_generated_config_dir }}/master.server.key
|
|
|
+ --signer-cert={{ openshift_ca_cert }}
|
|
|
+ --signer-key={{ openshift_ca_key }}
|
|
|
+ --signer-serial={{ openshift_ca_serial }}
|
|
|
--overwrite=false
|
|
|
when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
|
|
|
delegate_to: "{{ openshift_ca_host }}"
|
|
|
|
|
|
+- name: Generate the master client config
|
|
|
+ command: >
|
|
|
+ {{ openshift.common.client_binary }} adm create-api-client-config
|
|
|
+ {% for named_ca_certificate in openshift.master.named_certificates | default([]) | oo_collect('cafile') %}
|
|
|
+ --certificate-authority {{ named_ca_certificate }}
|
|
|
+ {% endfor %}
|
|
|
+ --certificate-authority={{ openshift_ca_cert }}
|
|
|
+ --client-dir={{ openshift_master_generated_config_dir }}
|
|
|
+ --groups=system:masters,system:openshift-master
|
|
|
+ --master={{ openshift.master.api_url }}
|
|
|
+ --public-master={{ openshift.master.public_api_url }}
|
|
|
+ --signer-cert={{ openshift_ca_cert }}
|
|
|
+ --signer-key={{ openshift_ca_key }}
|
|
|
+ --signer-serial={{ openshift_ca_serial }}
|
|
|
+ --user=system:openshift-master
|
|
|
+ --basename=openshift-master
|
|
|
+ args:
|
|
|
+ creates: "{{ openshift_master_generated_config_dir }}/openshift-master.kubeconfig"
|
|
|
+ when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
|
|
|
+ delegate_to: "{{ openshift_ca_host }}"
|
|
|
+
|
|
|
- file:
|
|
|
src: "{{ openshift_master_config_dir }}/{{ item }}"
|
|
|
dest: "{{ openshift_master_generated_config_dir }}/{{ item }}"
|