components.yml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. # These are the core component plays that configure the layers above the control
  3. # plane. A component is generally considered any part of OpenShift that runs on
  4. # top of the cluster and may be considered optional. Over time, much of OpenShift
  5. # above the Kubernetes apiserver and masters may be considered components.
  6. #
  7. # Preconditions:
  8. #
  9. # 1. The control plane is configured and reachable from nodes inside the cluster
  10. # 2. An admin kubeconfig file in /etc/origin/master/admin.kubeconfig that can
  11. # perform root level actions against the cluster
  12. # 3. On cloud providers, persistent volume provisioners are configured
  13. # 4. A subset of nodes is available to allow components to schedule - this must
  14. # include the masters and usually includes infra nodes.
  15. # 5. The init/main.yml playbook has been invoked
  16. - import_playbook: ../../openshift-glusterfs/private/config.yml
  17. when: groups.oo_glusterfs_to_config | default([]) | count > 0
  18. - import_playbook: ../../openshift-hosted/private/config.yml
  19. - import_playbook: ../../openshift-web-console/private/config.yml
  20. when: openshift_web_console_install | default(true) | bool
  21. - import_playbook: ../../openshift-metrics/private/config.yml
  22. when: openshift_metrics_install_metrics | default(false) | bool
  23. - import_playbook: ../../openshift-logging/private/config.yml
  24. when: openshift_logging_install_logging | default(false) | bool
  25. - import_playbook: ../../openshift-prometheus/private/config.yml
  26. when: openshift_hosted_prometheus_deploy | default(false) | bool
  27. - import_playbook: ../../openshift-service-catalog/private/config.yml
  28. when: openshift_enable_service_catalog | default(true) | bool
  29. - import_playbook: ../../openshift-management/private/config.yml
  30. when: openshift_management_install_management | default(false) | bool