config.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ---
  2. - include: ../../openshift-checks/private/install.yml
  3. - include: ../../openshift-etcd/private/config.yml
  4. - include: ../../openshift-nfs/private/config.yml
  5. when: groups.oo_nfs_to_config | default([]) | count > 0
  6. - include: ../../openshift-loadbalancer/private/config.yml
  7. when: groups.oo_lb_to_config | default([]) | count > 0
  8. - include: ../../openshift-master/private/config.yml
  9. - include: ../../openshift-master/private/additional_config.yml
  10. - include: ../../openshift-node/private/config.yml
  11. - include: ../../openshift-glusterfs/private/config.yml
  12. when: groups.oo_glusterfs_to_config | default([]) | count > 0
  13. - include: ../../openshift-hosted/private/config.yml
  14. - include: ../../openshift-metrics/private/config.yml
  15. when: openshift_metrics_install_metrics | default(false) | bool
  16. - include: ../../openshift-logging/private/config.yml
  17. when: openshift_logging_install_logging | default(false) | bool
  18. - include: ../../openshift-prometheus/private/config.yml
  19. when: openshift_hosted_prometheus_deploy | default(false) | bool
  20. - include: ../../openshift-service-catalog/private/config.yml
  21. when: openshift_enable_service_catalog | default(true) | bool
  22. - include: ../../openshift-management/private/config.yml
  23. when: openshift_management_install_management | default(false) | bool
  24. - name: Print deprecated variable warning message if necessary
  25. hosts: oo_first_master
  26. gather_facts: no
  27. tasks:
  28. - debug: msg="{{__deprecation_message}}"
  29. when:
  30. - __deprecation_message | default ('') | length > 0