config.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. - include: ../../common/openshift-cluster/verify_ansible_version.yml
  3. - hosts: localhost
  4. gather_facts: no
  5. tasks:
  6. - include_vars: vars.yml
  7. - include_vars: cluster_hosts.yml
  8. - add_host:
  9. name: "{{ item }}"
  10. groups: l_oo_all_hosts
  11. with_items: "{{ g_all_hosts | default([]) }}"
  12. - hosts: l_oo_all_hosts
  13. gather_facts: no
  14. tasks:
  15. - include_vars: vars.yml
  16. - include_vars: cluster_hosts.yml
  17. - include: ../../common/openshift-cluster/config.yml
  18. vars:
  19. g_nodeonmaster: true
  20. g_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  21. g_sudo: "{{ deployment_vars[deployment_type].become }}"
  22. openshift_cluster_id: "{{ cluster_id }}"
  23. openshift_debug_level: "{{ debug_level }}"
  24. openshift_deployment_type: "{{ deployment_type }}"
  25. openshift_hosted_registry_selector: 'type=infra'
  26. openshift_hosted_router_selector: 'type=infra'
  27. openshift_master_cluster_method: 'native'
  28. openshift_use_openshift_sdn: "{{ lookup('oo_option', 'use_openshift_sdn') }}"
  29. os_sdn_network_plugin_name: "{{ lookup('oo_option', 'sdn_network_plugin_name') }}"
  30. openshift_use_flannel: "{{ lookup('oo_option', 'use_flannel') }}"
  31. openshift_use_fluentd: "{{ lookup('oo_option', 'use_fluentd') }}"