diff options
author | Scott Dodson <sdodson@redhat.com> | 2018-01-26 10:41:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-26 10:41:44 -0500 |
commit | c6423636a4d14139960f4677dbab8fa646d1cb0c (patch) | |
tree | 56b6d96449cd4819959ab64ea391eaf0a8af856c /roles/openshift_web_console | |
parent | 6e9a9c3e50446a1bd716272e4a47785ad8ecbf08 (diff) | |
parent | ef6d01b6c0a4000133ab443a0a3d52d686484fc9 (diff) | |
download | openshift-c6423636a4d14139960f4677dbab8fa646d1cb0c.tar.gz openshift-c6423636a4d14139960f4677dbab8fa646d1cb0c.tar.bz2 openshift-c6423636a4d14139960f4677dbab8fa646d1cb0c.tar.xz openshift-c6423636a4d14139960f4677dbab8fa646d1cb0c.zip |
Merge pull request #6821 from spadgett/remove-asset-config
Remove old assetConfig from master-config.yaml
Diffstat (limited to 'roles/openshift_web_console')
-rw-r--r-- | roles/openshift_web_console/tasks/remove_old_asset_config.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/roles/openshift_web_console/tasks/remove_old_asset_config.yml b/roles/openshift_web_console/tasks/remove_old_asset_config.yml new file mode 100644 index 000000000..34158150c --- /dev/null +++ b/roles/openshift_web_console/tasks/remove_old_asset_config.yml @@ -0,0 +1,19 @@ +--- +# Remove the obsolete assetConfig stanza from master-config.yaml. Since the +# web console has been split out into a separate deployment, those settings +# are no longer used. +- name: Remove assetConfig from master-config.yaml + yedit: + state: absent + src: "{{ openshift.common.config_base }}/master/master-config.yaml" + key: assetConfig + +# This file was written by wire_aggregator.yml. It is no longer needed since +# the web console now discovers if the template service broker is running on +# startup. Remove the file if it exists. +- name: Remove obsolete web console / service catalog extension file + file: + state: absent + # Hard-code the path instead of using `openshift.common.config_base` since + # the path is hard-coded in wire_aggregator.yml. + path: /etc/origin/master/openshift-ansible-catalog-console.js |