provision.yml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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: normalize groups
  11. include: ../../byo/openshift-cluster/initialize_groups.yml
  12. - name: evaluate groups
  13. include: ../../common/openshift-cluster/evaluate_groups.yml
  14. - name: Wait for the nodes and gather their facts
  15. hosts: oo_all_hosts
  16. become: yes
  17. # NOTE: The nodes may not be up yet, don't gather facts here.
  18. # They'll be collected after `wait_for_connection`.
  19. gather_facts: no
  20. tasks:
  21. - name: Wait for the the nodes to come up
  22. wait_for_connection:
  23. - name: Gather facts for the new nodes
  24. setup:
  25. # NOTE(shadower): the (internal) DNS must be functional at this point!!
  26. # That will have happened in provision.yml if nsupdate was configured.
  27. # TODO(shadower): consider splitting this up so people can stop here
  28. # and configure their DNS if they have to.
  29. - name: Populate the DNS entries
  30. hosts: localhost
  31. tasks:
  32. - name: Populate DNS entries
  33. include_role:
  34. name: openshift_openstack
  35. tasks_from: populate-dns.yml
  36. when:
  37. - openshift_openstack_external_nsupdate_keys is defined
  38. - openshift_openstack_external_nsupdate_keys.private is defined or openshift_openstack_external_nsupdate_keys.public is defined
  39. - name: Prepare the Nodes in the cluster for installation
  40. hosts: oo_all_hosts
  41. become: yes
  42. gather_facts: yes
  43. tasks:
  44. - name: Install dependencies
  45. include_role:
  46. name: openshift_openstack
  47. tasks_from: node-packages.yml
  48. - name: Configure Node
  49. include_role:
  50. name: openshift_openstack
  51. tasks_from: node-configuration.yml