config.yml 1.1 KB

1234567891011121314151617181920212223
  1. ---
  2. # TODO: need to figure out a plan for setting hostname, currently the default
  3. # is localhost, so no hostname value (or public_hostname) value is getting
  4. # assigned
  5. - include: ../../common/openshift-cluster/config.yml
  6. vars_files:
  7. - ../../libvirt/openshift-cluster/vars.yml
  8. - ../../libvirt/openshift-cluster/cluster_hosts.yml
  9. vars:
  10. g_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  11. g_sudo: "{{ deployment_vars[deployment_type].become }}"
  12. g_nodeonmaster: true
  13. openshift_cluster_id: "{{ cluster_id }}"
  14. openshift_debug_level: "{{ debug_level }}"
  15. openshift_deployment_type: "{{ deployment_type }}"
  16. openshift_registry_selector: 'type=infra'
  17. openshift_hosted_router_selector: 'type=infra'
  18. openshift_infra_nodes: "{{ g_infra_hosts }}"
  19. openshift_master_cluster_method: 'native'
  20. openshift_use_openshift_sdn: "{{ lookup('oo_option', 'use_openshift_sdn') }}"
  21. os_sdn_network_plugin_name: "{{ lookup('oo_option', 'sdn_network_plugin_name') }}"
  22. openshift_use_flannel: "{{ lookup('oo_option', 'use_flannel') }}"
  23. openshift_use_fluentd: "{{ lookup('oo_option', 'use_fluentd') }}"