config.yml 541 B

1234567891011121314151617181920
  1. ---
  2. - name: master/config.yml, populate oo_masters_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_masters_to_config"
  8. with_items: "{{ oo_host_group_exp | default('') }}"
  9. when: oo_host_group_exp is defined
  10. - name: "Configure instances"
  11. hosts: oo_masters_to_config
  12. vars:
  13. openshift_hostname: "{{ gce_private_ip }}"
  14. vars_files:
  15. - vars.yml
  16. roles:
  17. - openshift_master
  18. - pods
  19. - os_env_extras