install.yml 914 B

12345678910111213141516171819202122232425262728293031
  1. ---
  2. # NOTE(shadower): the AWS playbook builds an in-memory inventory of
  3. # all the EC2 instances here. We don't need to as that's done by the
  4. # dynamic inventory.
  5. # TODO(shadower): the AWS playbook sets the
  6. # `openshift_master_cluster_hostname` and `osm_custom_cors_origins`
  7. # values here. We do it in the OSEv3 group vars. Do we need to add
  8. # some logic here?
  9. - name: Evaluate basic OpenStack groups
  10. import_playbook: evaluate_groups.yml
  11. - import_playbook: ../../prerequisites.yml
  12. - name: Prepare the Nodes in the cluster for installation
  13. any_errors_fatal: true
  14. hosts: oo_all_hosts
  15. become: yes
  16. gather_facts: yes
  17. tasks:
  18. - name: Configure Node
  19. import_role:
  20. name: openshift_openstack
  21. tasks_from: node-configuration.yml
  22. - name: run the cluster deploy
  23. import_playbook: ../../deploy_cluster.yml
  24. - name: Show information about the deployed cluster
  25. import_playbook: cluster-info.yml