main.yml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. # The version of cni binaries
  5. cni_version: v0.4.0
  6. contiv_default_subnet: "20.1.1.1/24"
  7. contiv_default_gw: "20.1.1.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. # Encapsulation type vlan|vxlan to use for instantiating container networks
  52. contiv_encap_mode: vlan
  53. # Backend used by Netplugin for instantiating container networks
  54. netplugin_driver: ovs
  55. # Create a default Contiv network for use by pods
  56. contiv_default_network: true
  57. # VLAN/ VXLAN tag value to be used for the default network
  58. contiv_default_network_tag: 1
  59. #SRFIXME (use the openshift variables)
  60. https_proxy: ""
  61. http_proxy: ""
  62. no_proxy: ""
  63. # The following are aci specific parameters when contiv_fabric_mode: aci is set.
  64. # Otherwise, you can ignore these.
  65. apic_url: ""
  66. apic_username: ""
  67. apic_password: ""
  68. apic_leaf_nodes: ""
  69. apic_phys_dom: ""
  70. apic_contracts_unrestricted_mode: no
  71. apic_epg_bridge_domain: not_specified
  72. is_atomic: False
  73. kube_cert_dir: "/data/src/github.com/openshift/origin/openshift.local.config/master"
  74. master_name: "{{ groups['masters'][0] }}"
  75. contiv_etcd_port: 22379
  76. etcd_url: "{{ hostvars[groups['masters'][0]]['ansible_' + netmaster_interface].ipv4.address }}:{{ contiv_etcd_port }}"
  77. kube_ca_cert: "{{ kube_cert_dir }}/ca.crt"
  78. kube_key: "{{ kube_cert_dir }}/admin.key"
  79. kube_cert: "{{ kube_cert_dir }}/admin.crt"
  80. kube_master_api_port: 8443