hosted.yml 908 B

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