remove_old_asset_config.yml 838 B

12345678910111213141516171819
  1. ---
  2. # Remove the obsolete assetConfig stanza from master-config.yaml. Since the
  3. # web console has been split out into a separate deployment, those settings
  4. # are no longer used.
  5. - name: Remove assetConfig from master-config.yaml
  6. yedit:
  7. state: absent
  8. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  9. key: assetConfig
  10. # This file was written by wire_aggregator.yml. It is no longer needed since
  11. # the web console now discovers if the template service broker is running on
  12. # startup. Remove the file if it exists.
  13. - name: Remove obsolete web console / service catalog extension file
  14. file:
  15. state: absent
  16. # Hard-code the path instead of using `openshift.common.config_base` since
  17. # the path is hard-coded in wire_aggregator.yml.
  18. path: /etc/origin/master/openshift-ansible-catalog-console.js