|
@@ -108,6 +108,38 @@
|
|
|
delegate_to: "{{ openshift_ca_host }}"
|
|
|
run_once: true
|
|
|
|
|
|
+- name: Test local loopback context
|
|
|
+ command: >
|
|
|
+ {{ hostvars[openshift_ca_host].openshift.common.client_binary }} config view
|
|
|
+ --config={{ openshift_master_loopback_config }}
|
|
|
+ changed_when: false
|
|
|
+ register: loopback_config
|
|
|
+ delegate_to: "{{ openshift_ca_host }}"
|
|
|
+ run_once: true
|
|
|
+
|
|
|
+- name: Generate the loopback master client config
|
|
|
+ command: >
|
|
|
+ {{ hostvars[openshift_ca_host].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_ca_config_dir }}
|
|
|
+ --groups=system:masters,system:openshift-master
|
|
|
+ --master={{ hostvars[openshift_ca_host].openshift.master.loopback_api_url }}
|
|
|
+ --public-master={{ hostvars[openshift_ca_host].openshift.master.loopback_api_url }}
|
|
|
+ --signer-cert={{ openshift_ca_cert }}
|
|
|
+ --signer-key={{ openshift_ca_key }}
|
|
|
+ --signer-serial={{ openshift_ca_serial }}
|
|
|
+ --user=system:openshift-master
|
|
|
+ --basename=openshift-master
|
|
|
+ {% if openshift_version | oo_version_gte_3_5_or_1_5(openshift.common.deployment_type) | bool %}
|
|
|
+ --expire-days={{ openshift_master_cert_expire_days }}
|
|
|
+ {% endif %}
|
|
|
+ when: loopback_context_string not in loopback_config.stdout
|
|
|
+ delegate_to: "{{ openshift_ca_host }}"
|
|
|
+ run_once: true
|
|
|
+
|
|
|
- name: Restore original serviceaccount keys
|
|
|
copy:
|
|
|
src: "{{ item }}.keep"
|