provision.yml 1.4 KB

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