config.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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/config.yml
  7. when: groups.oo_lb_to_config | default([]) | count > 0
  8. - include: ../openshift-master/config.yml
  9. - include: ../openshift-master/additional_config.yml
  10. - include: ../../openshift-node/private/config.yml
  11. - include: ../openshift-glusterfs/config.yml
  12. when: groups.oo_glusterfs_to_config | default([]) | count > 0
  13. - include: openshift_hosted.yml
  14. - include: openshift_metrics.yml
  15. when: openshift_metrics_install_metrics | default(false) | bool
  16. - include: openshift_logging.yml
  17. when: openshift_logging_install_logging | default(false) | bool
  18. - include: service_catalog.yml
  19. when: openshift_enable_service_catalog | default(true) | bool
  20. - include: ../openshift-management/config.yml
  21. when: openshift_management_install_management | default(false) | bool
  22. - name: Print deprecated variable warning message if necessary
  23. hosts: oo_first_master
  24. gather_facts: no
  25. tasks:
  26. - debug: msg="{{__deprecation_message}}"
  27. when:
  28. - __deprecation_message | default ('') | length > 0