config.yml 577 B

123456789101112131415161718192021
  1. - name: master/config.yml, populate oo_masters_to_config host group if needed
  2. hosts: localhost
  3. gather_facts: no
  4. tasks:
  5. - name: "Evaluate oo_host_group_exp if it's set"
  6. add_host:
  7. name: '{{ item }}'
  8. groups: oo_masters_to_config
  9. with_items: "{{ oo_host_group_exp | default('') }}"
  10. when: oo_host_group_exp is defined
  11. - name: Configure instances
  12. hosts: oo_masters_to_config
  13. vars:
  14. openshift_hostname: '{{ ansible_default_ipv4.address }}'
  15. vars_files:
  16. - vars.yml
  17. roles:
  18. - openshift_master
  19. - pods
  20. - os_env_extras