control_plane.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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-checks/private/install.yml
  22. - import_playbook: ../../openshift-etcd/private/config.yml
  23. - import_playbook: ../../openshift-nfs/private/config.yml
  24. when: groups.oo_nfs_to_config | default([]) | count > 0
  25. - import_playbook: ../../openshift-loadbalancer/private/config.yml
  26. when: groups.oo_lb_to_config | default([]) | count > 0
  27. - import_playbook: ../../openshift-master/private/config.yml
  28. - import_playbook: ../../openshift-master/private/additional_config.yml