config.yml 795 B

1234567891011121314151617181920212223242526272829
  1. ---
  2. - include: ../../common/openshift-cluster/verify_ansible_version.yml
  3. - hosts: localhost
  4. connection: local
  5. become: no
  6. gather_facts: no
  7. tags:
  8. - always
  9. tasks:
  10. - include_vars: ../../byo/openshift-cluster/cluster_hosts.yml
  11. - add_host:
  12. name: "{{ item }}"
  13. groups: l_oo_all_hosts
  14. with_items: "{{ g_all_hosts | default([]) }}"
  15. - hosts: l_oo_all_hosts
  16. gather_facts: no
  17. tags:
  18. - always
  19. tasks:
  20. - include_vars: ../../byo/openshift-cluster/cluster_hosts.yml
  21. - include: ../../common/openshift-cluster/config.yml
  22. vars:
  23. openshift_cluster_id: "{{ cluster_id | default('default') }}"
  24. openshift_debug_level: "{{ debug_level | default(2) }}"
  25. openshift_deployment_type: "{{ deployment_type }}"
  26. openshift_deployment_subtype: "{{ deployment_subtype }}"