provision.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ---
  2. - name: Create the OpenStack resources for cluster installation
  3. hosts: localhost
  4. tasks:
  5. - name: provision cluster
  6. include_role:
  7. name: openshift_openstack
  8. tasks_from: provision.yml
  9. # NOTE(shadower): Bring in the host groups:
  10. - name: evaluate groups
  11. include: ../../init/evaluate_groups.yml
  12. - name: Wait for the nodes and gather their facts
  13. hosts: oo_all_hosts
  14. become: yes
  15. # NOTE: The nodes may not be up yet, don't gather facts here.
  16. # They'll be collected after `wait_for_connection`.
  17. gather_facts: no
  18. tasks:
  19. - name: Wait for the the nodes to come up
  20. wait_for_connection:
  21. - name: Gather facts for the new nodes
  22. setup:
  23. # TODO(shadower): consider splitting this up so people can stop here
  24. # and configure their DNS if they have to.
  25. - name: Populate the DNS entries
  26. hosts: localhost
  27. tasks:
  28. - name: Populate DNS entries
  29. include_role:
  30. name: openshift_openstack
  31. tasks_from: populate-dns.yml
  32. when:
  33. - openshift_openstack_external_nsupdate_keys is defined
  34. - openshift_openstack_external_nsupdate_keys.private is defined or openshift_openstack_external_nsupdate_keys.public is defined
  35. - name: Prepare the Nodes in the cluster for installation
  36. hosts: oo_all_hosts
  37. become: yes
  38. gather_facts: yes
  39. tasks:
  40. - name: Install dependencies
  41. include_role:
  42. name: openshift_openstack
  43. tasks_from: node-packages.yml
  44. - name: Configure Node
  45. include_role:
  46. name: openshift_openstack
  47. tasks_from: node-configuration.yml