control_plane.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. ---
  2. # These are the control plane plays that configure a control plane on top of hosts
  3. # identified as masters. Over time, some of the pieces of the current control plane
  4. # may be moved to the components list.
  5. #
  6. # It is not required for any nodes to be configured, or passed to be configured,
  7. # when this playbook is invoked.
  8. #
  9. # Preconditions:
  10. #
  11. # 1. A set of machines have been identified to act as masters
  12. # 2. On cloud providers, a load balancer has been configured to point to the masters
  13. # and that load balancer has a DNS name
  14. # 3. The init/main.yml playbook has been invoked
  15. #
  16. # Postconditions:
  17. #
  18. # 1. The control plane is reachable from the outside of the cluster
  19. # 2. The master has an /etc/origin/master/admin.kubeconfig file that gives cluster-admin
  20. # access.
  21. - import_playbook: ../../openshift-etcd/private/config.yml
  22. - import_playbook: ../../openshift-nfs/private/config.yml
  23. when: groups.oo_nfs_to_config | default([]) | count > 0
  24. - import_playbook: ../../openshift-loadbalancer/private/config.yml
  25. when: groups.oo_lb_to_config | default([]) | count > 0
  26. - import_playbook: ../../openshift-master/private/config.yml
  27. - import_playbook: ../../openshift-master/private/additional_config.yml