install.yml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # This playbook installs onto a provisioned cluster
  2. ---
  3. - hosts: localhost
  4. connection: local
  5. tasks:
  6. - name: place all scale groups into Ansible groups
  7. include_role:
  8. name: openshift_gcp
  9. tasks_from: setup_scale_group_facts.yml
  10. - name: run the init
  11. import_playbook: ../../init/main.yml
  12. - import_playbook: ../../openshift-checks/private/install.yml
  13. - name: ensure master nodes are ready for bootstrapping
  14. import_playbook: ../../openshift-node/private/bootstrap.yml
  15. - name: configure the control plane
  16. import_playbook: ../../common/private/control_plane.yml
  17. - name: run the GCP specific post steps
  18. import_playbook: install_gcp.yml
  19. - name: install components
  20. import_playbook: ../../common/private/components.yml
  21. - name: Copy the kubeconfig, used by CI to determine when the containers are ready
  22. hosts: oo_first_master
  23. gather_facts: no
  24. tasks:
  25. - name: Retrieve cluster configuration
  26. fetch:
  27. src: "{{ openshift.common.config_base }}/master/admin.kubeconfig"
  28. dest: "/tmp/"
  29. flat: yes