provision.yml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. ---
  2. - name: Create the OpenStack resources for cluster installation
  3. hosts: localhost
  4. tasks:
  5. - name: provision cluster
  6. import_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. import_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: Subscribe RHEL instances
  43. import_role:
  44. name: rhel_subscribe
  45. when:
  46. - ansible_distribution == "RedHat"
  47. - rhsub_user is defined
  48. - rhsub_pass is defined
  49. - name: Enable required YUM repositories
  50. import_role:
  51. name: openshift_repos
  52. when:
  53. - ansible_distribution == "RedHat"
  54. - rh_subscribed is defined
  55. - name: Install dependencies
  56. import_role:
  57. name: openshift_openstack
  58. tasks_from: node-packages.yml
  59. - name: Configure Node
  60. import_role:
  61. name: openshift_openstack
  62. tasks_from: node-configuration.yml