Explorar o código

Fix extension script for catalog

Currently, playbook wire_aggregator places an empty
plugin script for openshift master called
openshift-ansible-catalog-console.js

This file should not be empty if using template_service_broker.

I have updated this file to include a boolean and the proper
string.

Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1506502
Michael Gugino %!s(int64=7) %!d(string=hai) anos
pai
achega
4a3033d393

+ 0 - 2
playbooks/common/openshift-master/files/openshift-ansible-catalog-console.js

@@ -1,2 +0,0 @@
-// empty file so that the master-config can still point to a file that exists
-// this file will be replaced by the template service broker role if enabled

+ 9 - 9
playbooks/common/openshift-master/tasks/wire_aggregator.yml

@@ -136,9 +136,15 @@
   when:
   - not front_proxy_kubeconfig.stat.exists
 
-- name: copy tech preview extension file for service console UI
-  copy:
-    src: openshift-ansible-catalog-console.js
+- name: Delete temp directory
+  file:
+    name: "{{ certtemp.stdout }}"
+    state: absent
+  changed_when: False
+
+- name: Setup extension file for service console UI
+  template:
+    src: ../templates/openshift-ansible-catalog-console.js
     dest: /etc/origin/master/openshift-ansible-catalog-console.js
 
 - name: Update master config
@@ -212,9 +218,3 @@
   changed_when: false
   when:
   - yedit_output.changed
-
-- name: Delete temp directory
-  file:
-    name: "{{ certtemp.stdout }}"
-    state: absent
-  changed_when: False

+ 1 - 0
playbooks/common/openshift-master/templates/openshift-ansible-catalog-console.js

@@ -0,0 +1 @@
+window.OPENSHIFT_CONSTANTS.TEMPLATE_SERVICE_BROKER_ENABLED = {{ 'true' if (template_service_broker_install | default(True)) else 'false' }};

+ 0 - 1
roles/template_service_broker/files/openshift-ansible-catalog-console.js

@@ -1 +0,0 @@
-window.OPENSHIFT_CONSTANTS.TEMPLATE_SERVICE_BROKER_ENABLED = true;

+ 0 - 5
roles/template_service_broker/tasks/install.yml

@@ -52,11 +52,6 @@
   shell: >
     {{ openshift.common.client_binary }} process -f "{{ mktemp.stdout }}/{{ __tsb_rbac_file }}" | {{ openshift.common.client_binary }} auth reconcile -f -
 
-- name: copy tech preview extension file for service console UI
-  copy:
-    src: openshift-ansible-catalog-console.js
-    dest: /etc/origin/master/openshift-ansible-catalog-console.js
-
 # Check that the TSB is running
 - name: Verify that TSB is running
   command: >