main.yml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. ---
  2. # The version of Contiv binaries to use
  3. contiv_version: 1.1.1
  4. # The version of cni binaries
  5. cni_version: v0.4.0
  6. contiv_default_subnet: "10.128.0.0/16"
  7. contiv_default_gw: "10.128.254.254"
  8. # TCP port that Netmaster listens for network connections
  9. netmaster_port: 9999
  10. # Default for contiv_role
  11. contiv_role: netmaster
  12. # TCP port that Netplugin listens for network connections
  13. netplugin_port: 6640
  14. contiv_rpc_port1: 9001
  15. contiv_rpc_port2: 9002
  16. contiv_rpc_port3: 9003
  17. # Interface used by Netplugin for inter-host traffic when encap_mode is vlan.
  18. # The interface must support 802.1Q trunking.
  19. netplugin_interface: "eno16780032"
  20. # IP address of the interface used for control communication within the cluster
  21. # It needs to be reachable from all nodes in the cluster.
  22. netplugin_ctrl_ip: "{{ hostvars[inventory_hostname]['ansible_' + netplugin_interface].ipv4.address }}"
  23. # IP used to terminate vxlan tunnels
  24. netplugin_vtep_ip: "{{ hostvars[inventory_hostname]['ansible_' + netplugin_interface].ipv4.address }}"
  25. # Interface used to bind Netmaster service
  26. netmaster_interface: "{{ netplugin_interface }}"
  27. # Path to the contiv binaries
  28. bin_dir: /usr/bin
  29. # Path to the contivk8s cni binary
  30. cni_bin_dir: /opt/cni/bin
  31. # Path to cni archive download directory
  32. cni_download_dir: /tmp
  33. # URL for cni binaries
  34. cni_bin_url_base: "https://github.com/containernetworking/cni/releases/download/"
  35. cni_bin_url: "{{ cni_bin_url_base }}/{{ cni_version }}/cni-{{ cni_version }}.tbz2"
  36. # Contiv config directory
  37. contiv_config_dir: /opt/contiv/config
  38. # Directory to store downloaded Contiv releases
  39. contiv_releases_directory: /opt/contiv
  40. contiv_current_release_directory: "{{ contiv_releases_directory }}/{{ contiv_version }}"
  41. #The default url to download the Contiv tar's from
  42. contiv_download_url_base: "https://github.com/contiv/netplugin/releases/download"
  43. contiv_download_url: "{{ contiv_download_url_base }}/{{ contiv_version }}/netplugin-{{ contiv_version }}.tar.bz2"
  44. # This is where kubelet looks for plugin files
  45. kube_plugin_dir: /usr/libexec/kubernetes/kubelet-plugins/net/exec
  46. # Specifies routed mode vs bridged mode for networking (bridge | routing)
  47. # if you are using an external router for all routing, you should select bridge here
  48. netplugin_fwd_mode: bridge
  49. # Contiv fabric mode aci|default
  50. contiv_fabric_mode: default
  51. # Global VLAN range
  52. contiv_vlan_range: "2900-3000"
  53. # Encapsulation type vlan|vxlan to use for instantiating container networks
  54. contiv_encap_mode: vlan
  55. # Backend used by Netplugin for instantiating container networks
  56. netplugin_driver: ovs
  57. # Create a default Contiv network for use by pods
  58. contiv_default_network: true
  59. # Statically configured tag for default network (if needed)
  60. contiv_default_network_tag: ""
  61. #SRFIXME (use the openshift variables)
  62. https_proxy: ""
  63. http_proxy: ""
  64. no_proxy: ""
  65. # The following are aci specific parameters when contiv_fabric_mode: aci is set.
  66. # Otherwise, you can ignore these.
  67. apic_url: ""
  68. apic_username: ""
  69. apic_password: ""
  70. apic_leaf_nodes: ""
  71. apic_phys_dom: ""
  72. apic_contracts_unrestricted_mode: no
  73. apic_epg_bridge_domain: not_specified
  74. apic_configure_default_policy: false
  75. apic_default_external_contract: "uni/tn-common/brc-default"
  76. apic_default_app_profile: "contiv-infra-app-profile"
  77. is_atomic: False
  78. kube_cert_dir: "/data/src/github.com/openshift/origin/openshift.local.config/master"
  79. master_name: "{{ groups['masters'][0] }}"
  80. contiv_etcd_port: 22379
  81. etcd_url: "{{ hostvars[groups['masters'][0]]['ansible_' + netmaster_interface].ipv4.address }}:{{ contiv_etcd_port }}"
  82. kube_ca_cert: "{{ kube_cert_dir }}/ca.crt"
  83. kube_key: "{{ kube_cert_dir }}/admin.key"
  84. kube_cert: "{{ kube_cert_dir }}/admin.crt"
  85. kube_master_api_port: 8443
  86. # contivh1 default subnet and gateway
  87. #contiv_h1_subnet_default: "132.1.1.0/24"
  88. #contiv_h1_gw_default: "132.1.1.1"
  89. contiv_h1_subnet_default: "10.129.0.0/16"
  90. contiv_h1_gw_default: "10.129.0.1"
  91. # contiv default private subnet for ext access
  92. contiv_private_ext_subnet: "10.130.0.0/16"
  93. openshift_docker_service_name: "{{ 'container-engine' if (openshift_docker_use_system_container | default(False)) else 'docker' }}"