config.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 if it's set"
  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 nodes in {{ oo_env }}"
  11. hosts: "tag_env-host-type_{{ oo_env }}-openshift-node"
  12. connection: ssh
  13. user: root
  14. - name: "Set Origin specific facts on localhost (for later use)"
  15. hosts: localhost
  16. gather_facts: no
  17. tasks:
  18. - name: Setting openshift_node_ips fact on localhost
  19. set_fact:
  20. openshift_node_ips: "{{ hostvars
  21. | oo_select_keys(groups['tag_env-host-type_' + oo_env + '-openshift-node'])
  22. | oo_collect(attribute='ansible_default_ipv4.address') }}"
  23. when: groups['tag_env-host-type_' + oo_env + '-openshift-node'] 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. - {
  32. role: openshift_master,
  33. openshift_node_ips: "{{ hostvars['localhost'].openshift_node_ips | default(['']) }}",
  34. openshift_env: "{{ oo_env }}"
  35. openshift_public_ip: "{{ ec2_ip_address }}"
  36. }
  37. - pods
  38. - os_env_extras