|
@@ -26,6 +26,11 @@
|
|
|
register: mktemp
|
|
|
changed_when: False
|
|
|
|
|
|
+- name: Copy admin client config
|
|
|
+ command: >
|
|
|
+ cp {{ openshift.common.config_base }}/master//admin.kubeconfig {{ mktemp.stdout }}/admin.kubeconfig
|
|
|
+ changed_when: false
|
|
|
+
|
|
|
- name: Copy the web console config template to temp directory
|
|
|
copy:
|
|
|
src: "{{ __console_files_location }}/{{ item }}"
|
|
@@ -80,7 +85,8 @@
|
|
|
|
|
|
- name: Reconcile with the web console RBAC file
|
|
|
shell: >
|
|
|
- {{ openshift_client_binary }} process -f "{{ mktemp.stdout }}/{{ __console_rbac_file }}" | {{ openshift_client_binary }} auth reconcile -f -
|
|
|
+ {{ openshift_client_binary }} process -f "{{ mktemp.stdout }}/{{ __console_rbac_file }}" --config={{ mktemp.stdout }}/admin.kubeconfig
|
|
|
+ | {{ openshift_client_binary }} auth reconcile --config={{ mktemp.stdout }}/admin.kubeconfig -f -
|
|
|
|
|
|
- name: Apply the web console template file
|
|
|
shell: >
|
|
@@ -89,7 +95,8 @@
|
|
|
--param IMAGE="{{ openshift_web_console_prefix }}{{ openshift_web_console_image_name }}:{{ openshift_web_console_version }}"
|
|
|
--param NODE_SELECTOR={{ openshift_web_console_nodeselector | to_json | quote }}
|
|
|
--param REPLICA_COUNT="{{ openshift_web_console_replica_count }}"
|
|
|
- | {{ openshift_client_binary }} apply -f -
|
|
|
+ --config={{ mktemp.stdout }}/admin.kubeconfig
|
|
|
+ | {{ openshift_client_binary }} apply --config={{ mktemp.stdout }}/admin.kubeconfig -f -
|
|
|
|
|
|
- name: Verify that the web console is running
|
|
|
command: >
|