config.yml 419 B

123456789101112131415
  1. ---
  2. - name: Populate oo_masters_to_config host group
  3. hosts: localhost
  4. gather_facts: no
  5. tasks:
  6. - add_host:
  7. name: "{{ item }}"
  8. groups: oo_masters_to_config
  9. with_items: groups['masters']
  10. - include: ../../common/openshift-master/config.yml
  11. vars:
  12. openshift_cluster_id: "{{ cluster_id | default('default') }}"
  13. openshift_debug_level: 4
  14. openshift_deployment_type: "{{ deployment_type }}"