config.yml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. - hosts: localhost
  2. gather_facts: no
  3. tasks:
  4. - include_vars: vars.yml
  5. - include_vars: cluster_hosts.yml
  6. - add_host:
  7. name: "{{ item }}"
  8. groups: l_oo_all_hosts
  9. with_items: g_all_hosts
  10. - hosts: l_oo_all_hosts
  11. gather_facts: no
  12. tasks:
  13. - include_vars: vars.yml
  14. - include_vars: cluster_hosts.yml
  15. - include: ../../common/openshift-cluster/config.yml
  16. vars:
  17. g_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  18. g_sudo: "{{ deployment_vars[deployment_type].become }}"
  19. g_nodeonmaster: true
  20. openshift_cluster_id: "{{ cluster_id }}"
  21. openshift_debug_level: "{{ debug_level }}"
  22. openshift_deployment_type: "{{ deployment_type }}"
  23. openshift_public_hostname: "{{ ec2_ip_address }}"
  24. openshift_hosted_registry_selector: 'type=infra'
  25. openshift_hosted_router_selector: 'type=infra'
  26. openshift_node_labels:
  27. region: "{{ deployment_vars[deployment_type].region }}"
  28. type: "{{ hostvars[inventory_hostname]['ec2_tag_sub-host-type'] if inventory_hostname in groups['tag_host-type_node'] else hostvars[inventory_hostname]['ec2_tag_host-type'] }}"
  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