config.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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: "Configure instances"
  25. hosts: oo_hosts_to_config
  26. connection: ssh
  27. user: root
  28. vars_files:
  29. - vars.yml
  30. roles:
  31. - repos
  32. - docker
  33. - {
  34. role: openshift_node,
  35. openshift_master_ips: "{{ hostvars['localhost'].openshift_master_ips | default(['']) }}",
  36. # TODO: add openshift_Master_public_ips
  37. openshift_env: "{{ oo_env }}"
  38. # TODO: openshift_public_ip: set to aws instance public ip
  39. }
  40. - os_env_extras