main.yml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. ---
  2. # The version of Contiv binaries to use
  3. contiv_version: 1.0.0-beta.3-02-21-2017.20-52-42.UTC
  4. contiv_default_subnet: "20.1.1.1/24"
  5. contiv_default_gw: "20.1.1.254"
  6. # TCP port that Netmaster listens for network connections
  7. netmaster_port: 9999
  8. # TCP port that Netplugin listens for network connections
  9. netplugin_port: 6640
  10. contiv_rpc_port1: 9001
  11. contiv_rpc_port2: 9002
  12. contiv_rpc_port3: 9003
  13. # Interface used by Netplugin for inter-host traffic when encap_mode is vlan.
  14. # The interface must support 802.1Q trunking.
  15. netplugin_interface: "eno16780032"
  16. # IP address of the interface used for control communication within the cluster
  17. # It needs to be reachable from all nodes in the cluster.
  18. netplugin_ctrl_ip: "{{ hostvars[inventory_hostname]['ansible_' + netplugin_interface].ipv4.address }}"
  19. # IP used to terminate vxlan tunnels
  20. netplugin_vtep_ip: "{{ hostvars[inventory_hostname]['ansible_' + netplugin_interface].ipv4.address }}"
  21. # Interface used to bind Netmaster service
  22. netmaster_interface: "{{ netplugin_interface }}"
  23. # Path to the contiv binaries
  24. bin_dir: /usr/bin
  25. # Path to the contivk8s cni binary
  26. cni_bin_dir: /opt/cni/bin
  27. # Contiv config directory
  28. contiv_config_dir: /opt/contiv/config
  29. # Directory to store downloaded Contiv releases
  30. contiv_releases_directory: /opt/contiv
  31. contiv_current_release_directory: "{{ contiv_releases_directory }}/{{ contiv_version }}"
  32. #The default url to download the Contiv tar's from
  33. contiv_download_url_base: "https://github.com/contiv/netplugin/releases/download"
  34. contiv_download_url: "{{ contiv_download_url_base }}/{{ contiv_version }}/netplugin-{{ contiv_version }}.tar.bz2"
  35. # This is where kubelet looks for plugin files
  36. kube_plugin_dir: /usr/libexec/kubernetes/kubelet-plugins/net/exec
  37. # Specifies routed mode vs bridged mode for networking (bridge | routing)
  38. # if you are using an external router for all routing, you should select bridge here
  39. netplugin_fwd_mode: bridge
  40. # Contiv fabric mode aci|default
  41. contiv_fabric_mode: default
  42. # Encapsulation type vlan|vxlan to use for instantiating container networks
  43. contiv_encap_mode: vlan
  44. # Backend used by Netplugin for instantiating container networks
  45. netplugin_driver: ovs
  46. # Create a default Contiv network for use by pods
  47. contiv_default_network: true
  48. # VLAN/ VXLAN tag value to be used for the default network
  49. contiv_default_network_tag: 1
  50. #SRFIXME (use the openshift variables)
  51. https_proxy: ""
  52. http_proxy: ""
  53. no_proxy: ""
  54. # The following are aci specific parameters when contiv_fabric_mode: aci is set.
  55. # Otherwise, you can ignore these.
  56. apic_url: ""
  57. apic_username: ""
  58. apic_password: ""
  59. apic_leaf_nodes: ""
  60. apic_phys_dom: ""
  61. apic_contracts_unrestricted_mode: no
  62. apic_epg_bridge_domain: not_specified
  63. is_atomic: False
  64. kube_cert_dir: "/data/src/github.com/openshift/origin/openshift.local.config/master"
  65. master_name: "{{ groups['masters'][0] }}"
  66. contiv_etcd_port: 22379
  67. etcd_url: "{{ hostvars[groups['masters'][0]]['ansible_' + netmaster_interface].ipv4.address }}:{{ contiv_etcd_port }}"
  68. kube_ca_cert: "{{ kube_cert_dir }}/ca.crt"
  69. kube_key: "{{ kube_cert_dir }}/admin.key"
  70. kube_cert: "{{ kube_cert_dir }}/admin.crt"
  71. kube_master_api_port: 8443