config.yml 522 B

1234567891011121314151617181920
  1. ---
  2. - name: Populate oo_etcd_hosts_to_config and oo_first_master host groups
  3. hosts: localhost
  4. gather_facts: no
  5. tasks:
  6. - name: Evaluate oo_etcd_hosts_to_config
  7. add_host:
  8. name: "{{ item }}"
  9. groups: oo_etcd_hosts_to_config
  10. with_items: groups.etcd
  11. - name: Evaluate oo_first_master
  12. add_host:
  13. name: "{{ item }}"
  14. groups: oo_first_master
  15. with_items: groups.masters.0
  16. - include: ../../common/openshift-etcd/config.yml
  17. vars:
  18. openshift_first_master: "{{ groups.masters.0 }}"