config.yml 1.3 KB

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