provision.yml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. import_playbook: ../../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. - name: set common facts
  24. import_playbook: ../../init/facts.yml
  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. roles:
  42. - role: rhel_subscribe
  43. when:
  44. - ansible_distribution == "RedHat"
  45. - rhsub_user | default(False)
  46. - rhsub_pass | default(False)
  47. tasks:
  48. - name: Install dependencies
  49. include_role:
  50. name: openshift_openstack
  51. tasks_from: node-packages.yml
  52. - name: Configure Node
  53. include_role:
  54. name: openshift_openstack
  55. tasks_from: node-configuration.yml