You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
3.3 KiB

  1. # see roles/network_plugin/calico/defaults/main.yml
  2. ## With calico it is possible to distributed routes with border routers of the datacenter.
  3. ## Warning : enabling router peering will disable calico's default behavior ('node mesh').
  4. ## The subnets of each nodes will be distributed by the datacenter router
  5. # peer_with_router: false
  6. # Enables Internet connectivity from containers
  7. # nat_outgoing: true
  8. # Enables Calico CNI "host-local" IPAM plugin
  9. # calico_ipam_host_local: true
  10. # add default ippool name
  11. # calico_pool_name: "default-pool"
  12. # add default ippool blockSize (defaults kube_network_node_prefix)
  13. # calico_pool_blocksize: 24
  14. # add default ippool CIDR (must be inside kube_pods_subnet, defaults to kube_pods_subnet otherwise)
  15. # calico_pool_cidr: 1.2.3.4/5
  16. # Global as_num (/calico/bgp/v1/global/as_num)
  17. # global_as_num: "64512"
  18. # If doing peering with node-assigned asn where the globas does not match your nodes, you want this
  19. # to be true. All other cases, false.
  20. # calico_no_global_as_num: false
  21. # You can set MTU value here. If left undefined or empty, it will
  22. # not be specified in calico CNI config, so Calico will use built-in
  23. # defaults. The value should be a number, not a string.
  24. # calico_mtu: 1500
  25. # Configure the MTU to use for workload interfaces and tunnels.
  26. # - If Wireguard is enabled, set to your network MTU - 60
  27. # - Otherwise, if VXLAN or BPF mode is enabled, set to your network MTU - 50
  28. # - Otherwise, if IPIP is enabled, set to your network MTU - 20
  29. # - Otherwise, if not using any encapsulation, set to your network MTU.
  30. # calico_veth_mtu: 1440
  31. # Advertise Cluster IPs
  32. # calico_advertise_cluster_ips: true
  33. # Advertise Service External IPs
  34. # calico_advertise_service_external_ips:
  35. # - x.x.x.x/24
  36. # - y.y.y.y/32
  37. # Choose data store type for calico: "etcd" or "kdd" (kubernetes datastore)
  38. # calico_datastore: "etcd"
  39. # Choose Calico iptables backend: "Legacy", "Auto" or "NFT"
  40. # calico_iptables_backend: "Legacy"
  41. # Use typha (only with kdd)
  42. # typha_enabled: false
  43. # Generate TLS certs for secure typha<->calico-node communication
  44. # typha_secure: false
  45. # Scaling typha: 1 replica per 100 nodes is adequate
  46. # Number of typha replicas
  47. # typha_replicas: 1
  48. # Set max typha connections
  49. # typha_max_connections_lower_limit: 300
  50. # Set calico network backend: "bird", "vxlan" or "none"
  51. # bird enable BGP routing, required for ipip mode.
  52. # calico_network_backend: bird
  53. # IP in IP and VXLAN is mutualy exclusive modes.
  54. # set IP in IP encapsulation mode: "Always", "CrossSubnet", "Never"
  55. # calico_ipip_mode: 'Always'
  56. # set VXLAN encapsulation mode: "Always", "CrossSubnet", "Never"
  57. # calico_vxlan_mode: 'Never'
  58. # set VXLAN port and VNI
  59. # calico_vxlan_vni: 4096
  60. # calico_vxlan_port: 4789
  61. # If you want to use non default IP_AUTODETECTION_METHOD for calico node set this option to one of:
  62. # * can-reach=DESTINATION
  63. # * interface=INTERFACE-REGEX
  64. # see https://docs.projectcalico.org/reference/node/configuration
  65. # calico_ip_auto_method: "interface=eth.*"
  66. # Choose the iptables insert mode for Calico: "Insert" or "Append".
  67. # calico_felix_chaininsertmode: Insert
  68. # If you want use the default route interface when you use multiple interface with dynamique route (iproute2)
  69. # see https://docs.projectcalico.org/reference/node/configuration : FELIX_DEVICEROUTESOURCEADDRESS
  70. # calico_use_default_route_src_ipaddr: false