config.yml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. ---
  2. - name: "populate oo_hosts_to_config host group if needed"
  3. hosts: localhost
  4. gather_facts: no
  5. tasks:
  6. - name: Evaluate oo_host_group_exp
  7. add_host: "name={{ item }} groups=oo_hosts_to_config"
  8. with_items: "{{ oo_host_group_exp | default('') }}"
  9. when: oo_host_group_exp is defined
  10. - name: "Gather facts for masters in {{ oo_env }}"
  11. hosts: "tag_env-host-type-{{ oo_env }}-openshift-master"
  12. connection: ssh
  13. user: root
  14. - name: "Set OO sepcific facts on localhost (for later use)"
  15. hosts: localhost
  16. gather_facts: no
  17. tasks:
  18. - name: Setting openshift_master_ips fact on localhost
  19. set_fact:
  20. openshift_master_ips: "{{ hostvars
  21. | oo_select_keys(groups['tag_env-host-type-' + oo_env + '-openshift-master'])
  22. | oo_collect(attribute='ansible_default_ipv4.address') }}"
  23. when: groups['tag_env-host-type-' + oo_env + '-openshift-master'] is defined
  24. - name: Setting openshift_master_public_ips fact on localhost
  25. set_fact:
  26. openshift_master_public_ips: "{{ hostvars
  27. | oo_select_keys(groups['tag_env-host-type-' + oo_env + '-openshift-master'])
  28. | oo_collect(attribute='gce_public_ip') }}"
  29. when: groups['tag_env-host-type-' + oo_env + '-openshift-master'] is defined
  30. - name: "Configure instances"
  31. hosts: oo_hosts_to_config
  32. connection: ssh
  33. user: root
  34. vars_files:
  35. - vars.yml
  36. roles:
  37. - {
  38. role: openshift_node,
  39. openshift_master_ips: "{{ hostvars['localhost'].openshift_master_ips | default(['']) }}",
  40. openshift_master_public_ips: "{{ hostvars['localhost'].openshift_master_public_ips | default(['']) }}",
  41. openshift_public_ip: "{{ gce_public_ip }}",
  42. openshift_env: "{{ oo_env }}",
  43. }
  44. - docker
  45. - os_env_extras