install.yml 1007 B

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. - name: ensure master nodes are ready for bootstrapping
  13. import_playbook: ../../openshift-node/private/bootstrap.yml
  14. - name: configure the control plane
  15. import_playbook: ../../common/private/control_plane.yml
  16. - name: run the GCP specific post steps
  17. import_playbook: install_gcp.yml
  18. - name: configure any nodes that aren't bootstrapped
  19. import_playbook: ../../openshift-node/private/config.yml
  20. - name: install components
  21. import_playbook: ../../common/private/components.yml
  22. - hosts: primary_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