|
@@ -47,6 +47,18 @@
|
|
|
console_picker_developer_console_public_url: "{{ openshift.master.public_console_url }}/"
|
|
|
when: openshift_web_console_install | default(true) | bool
|
|
|
|
|
|
+- set_fact: console_cert={{ lookup('file', openshift_console_cert) }}
|
|
|
+ when: openshift_console_cert is exists
|
|
|
+ changed_when: false
|
|
|
+
|
|
|
+- set_fact: console_key={{ lookup('file', openshift_console_key) }}
|
|
|
+ when: openshift_console_key is exists
|
|
|
+ changed_when: false
|
|
|
+
|
|
|
+- set_fact: console_ca_cert={{ lookup('file', openshift_console_ca) }}
|
|
|
+ when: openshift_console_ca is exists
|
|
|
+ changed_when: false
|
|
|
+
|
|
|
# Generate a new config when a config map is not defined.
|
|
|
- name: Set web console config properties from inventory variables
|
|
|
yedit:
|
|
@@ -84,6 +96,9 @@
|
|
|
--param SERVER_CONFIG="{{ updated_console_config['content'] | b64decode }}"
|
|
|
--param REPLICA_COUNT="{{ openshift_console_replica_count }}"
|
|
|
--param CONSOLE_HOSTNAME="{{ openshift_console_hostname }}"
|
|
|
+ --param TLS_CERT="{{ console_cert | default('') }}"
|
|
|
+ --param TLS_KEY="{{ console_key | default('') }}"
|
|
|
+ --param TLS_CA_CERT="{{ console_ca_cert | default('') }}"
|
|
|
--config={{ mktemp.stdout }}/admin.kubeconfig
|
|
|
| {{ openshift_client_binary }} apply --config={{ mktemp.stdout }}/admin.kubeconfig -f -
|
|
|
|