config.yml 1.6 KB

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