config.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  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. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  11. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  12. with_items: g_all_hosts
  13. - hosts: l_oo_all_hosts
  14. gather_facts: no
  15. tasks:
  16. - include_vars: vars.yml
  17. - include_vars: cluster_hosts.yml
  18. - include: ../../common/openshift-cluster/config.yml
  19. vars:
  20. g_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  21. g_sudo: "{{ deployment_vars[deployment_type].become }}"
  22. g_nodeonmaster: true
  23. openshift_cluster_id: "{{ cluster_id }}"
  24. openshift_debug_level: "{{ debug_level }}"
  25. openshift_deployment_type: "{{ deployment_type }}"
  26. openshift_hostname: "{{ gce_private_ip }}"
  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') }}"