hosted.yml 803 B

12345678910111213141516171819202122
  1. ---
  2. - include: ../../common/openshift-cluster/openshift_hosted.yml
  3. - include: ../../openshift-metrics/private/config.yml
  4. when: openshift_metrics_install_metrics | default(false) | bool
  5. - include: ../../common/openshift-cluster/openshift_logging.yml
  6. when: openshift_logging_install_logging | default(false) | bool
  7. - include: ../../common/openshift-cluster/service_catalog.yml
  8. when: openshift_enable_service_catalog | default(false) | bool
  9. - include: ../../openshift-management/private/config.yml
  10. when: openshift_management_install_management | default(false) | bool
  11. - name: Print deprecated variable warning message if necessary
  12. hosts: oo_first_master
  13. gather_facts: no
  14. tasks:
  15. - debug: msg="{{__deprecation_message}}"
  16. when:
  17. - __deprecation_message | default ('') | length > 0