provision.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. ---
  2. - name: Create the OpenStack resources for cluster installation
  3. import_playbook: provision_resources.yml
  4. - name: Evaluate OpenStack groups from the dynamic inventory
  5. import_playbook: evaluate_groups.yml
  6. - name: Evaluate remaining cluster groups
  7. import_playbook: ../../init/evaluate_groups.yml
  8. - name: Wait for the nodes and gather their facts
  9. any_errors_fatal: true
  10. hosts: oo_all_hosts
  11. become: yes
  12. # NOTE: The nodes may not be up yet, don't gather facts here.
  13. # They'll be collected after `wait_for_connection`.
  14. gather_facts: no
  15. tasks:
  16. - name: Wait for the the nodes to come up
  17. wait_for_connection:
  18. - name: Gather facts for the new nodes
  19. setup:
  20. # TODO(shadower): consider splitting this up so people can stop here
  21. # and configure their DNS if they have to.
  22. - name: Populate the DNS entries
  23. any_errors_fatal: true
  24. hosts: localhost
  25. tasks:
  26. - name: Populate DNS entries
  27. import_role:
  28. name: openshift_openstack
  29. tasks_from: populate-dns.yml
  30. when:
  31. - openshift_openstack_external_nsupdate_keys is defined
  32. - openshift_openstack_external_nsupdate_keys.private is defined or openshift_openstack_external_nsupdate_keys.public is defined
  33. - import_playbook: ../../init/basic_facts.yml
  34. - name: Optionally subscribe the RHEL nodes
  35. any_errors_fatal: true
  36. hosts: oo_all_hosts
  37. become: yes
  38. gather_facts: yes
  39. tasks:
  40. - name: Subscribe RHEL instances
  41. import_role:
  42. name: rhel_subscribe
  43. when:
  44. - ansible_distribution == "RedHat"
  45. - rhsub_user is defined
  46. - rhsub_pass is defined
  47. - name: Show information about the deployed cluster
  48. import_playbook: cluster-info.yml