config.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. - hosts: localhost
  3. gather_facts: no
  4. tasks:
  5. - include_vars: vars.yml
  6. - include_vars: cluster_hosts.yml
  7. - add_host:
  8. name: "{{ item }}"
  9. groups: l_oo_all_hosts
  10. with_items: "{{ g_all_hosts }}"
  11. - hosts: l_oo_all_hosts
  12. gather_facts: no
  13. tasks:
  14. - include_vars: vars.yml
  15. - include_vars: cluster_hosts.yml
  16. - include: ../../common/openshift-cluster/config.yml
  17. vars:
  18. g_nodeonmaster: true
  19. g_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  20. g_sudo: "{{ deployment_vars[deployment_type].become }}"
  21. openshift_cluster_id: "{{ cluster_id }}"
  22. openshift_debug_level: "{{ debug_level }}"
  23. openshift_deployment_type: "{{ deployment_type }}"
  24. openshift_registry_selector: 'type=infra'
  25. openshift_hosted_router_selector: 'type=infra'
  26. openshift_infra_nodes: "{{ g_infra_hosts }}"
  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') }}"