config.yml 696 B

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