deploy_cluster.yml 1.6 KB

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