install.yml 886 B

123456789101112131415161718192021222324252627282930313233
  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. - name: configure the control plane
  13. import_playbook: ../../common/private/control_plane.yml
  14. - name: ensure the masters are configured as nodes
  15. import_playbook: ../../openshift-node/private/config.yml
  16. - name: run the GCP specific post steps
  17. import_playbook: install_gcp.yml
  18. - name: install components
  19. import_playbook: ../../common/private/components.yml
  20. - hosts: primary_master
  21. gather_facts: no
  22. tasks:
  23. - name: Retrieve cluster configuration
  24. fetch:
  25. src: "{{ openshift.common.config_base }}/master/admin.kubeconfig"
  26. dest: "/tmp/"
  27. flat: yes