config.yml 909 B

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