provision.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. # NOTE(shadower): the (internal) DNS must be functional at this point!!
  24. # That will have happened in provision.yml if nsupdate was configured.
  25. # TODO(shadower): consider splitting this up so people can stop here
  26. # and configure their DNS if they have to.
  27. - name: Populate the DNS entries
  28. hosts: localhost
  29. tasks:
  30. - name: Populate DNS entries
  31. include_role:
  32. name: openshift_openstack
  33. tasks_from: populate-dns.yml
  34. when:
  35. - openshift_openstack_external_nsupdate_keys is defined
  36. - openshift_openstack_external_nsupdate_keys.private is defined or openshift_openstack_external_nsupdate_keys.public is defined
  37. - name: Prepare the Nodes in the cluster for installation
  38. hosts: oo_all_hosts
  39. become: yes
  40. gather_facts: yes
  41. tasks:
  42. - name: Install dependencies
  43. include_role:
  44. name: openshift_openstack
  45. tasks_from: node-packages.yml
  46. - name: Configure Node
  47. include_role:
  48. name: openshift_openstack
  49. tasks_from: node-configuration.yml