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.

64 lines
2.2 KiB

6 years ago
  1. ---
  2. # Enables Internet connectivity from containers
  3. nat_outgoing: true
  4. # add default ippool name
  5. calico_pool_name: "default-pool"
  6. calico_ipv4pool_ipip: "Off"
  7. # Use IP-over-IP encapsulation across hosts
  8. ipip: true
  9. ipip_mode: Always # change to "CrossSubnet" if you only want ipip encapsulation on traffic going across subnets
  10. # Set to true if you want your calico cni binaries to overwrite the
  11. # ones from hyperkube while leaving other cni plugins intact.
  12. overwrite_hyperkube_cni: true
  13. calico_cert_dir: /etc/calico/certs
  14. etcd_cert_dir: /etc/ssl/etcd/ssl
  15. # Global as_num (/calico/bgp/v1/global/as_num)
  16. global_as_num: "64512"
  17. # You can set MTU value here. If left undefined or empty, it will
  18. # not be specified in calico CNI config, so Calico will use built-in
  19. # defaults. The value should be a number, not a string.
  20. # calico_mtu: 1500
  21. # Limits for apps
  22. calico_node_memory_limit: 500M
  23. calico_node_cpu_limit: 300m
  24. calico_node_memory_requests: 64M
  25. calico_node_cpu_requests: 150m
  26. calicoctl_memory_limit: 170M
  27. calicoctl_cpu_limit: 100m
  28. calicoctl_memory_requests: 32M
  29. calicoctl_cpu_requests: 50m
  30. # Enable Prometheus Metrics endpoint for felix
  31. calico_felix_prometheusmetricsenabled: "false"
  32. calico_felix_prometheusmetricsport: 9091
  33. calico_felix_prometheusgometricsenabled: "true"
  34. calico_felix_prometheusprocessmetricsenabled: "true"
  35. ### check latest version https://github.com/projectcalico/calico-upgrade/releases
  36. calico_upgrade_enabled: true
  37. calico_upgrade_version: v1.0.5
  38. # Should calico ignore kernel's RPF check setting,
  39. # see https://github.com/projectcalico/felix/blob/ab8799eaea66627e5db7717e62fca61fd9c08646/python/calico/felix/config.py#L198
  40. calico_node_ignorelooserpf: false
  41. # Define address on which Felix will respond to health requests
  42. calico_healthhost: "localhost"
  43. # If you want to use non default IP_AUTODETECTION_METHOD for calico node set this option to one of:
  44. # * can-reach=DESTINATION
  45. # * interface=INTERFACE-REGEX
  46. # see https://docs.projectcalico.org/v3.0/reference/node/configuration#ip-autodetection-methods
  47. # calico_ip_auto_method: "interface=eth.*"
  48. calico_baremetal_nodename: "{{ inventory_hostname }}"
  49. ### do not enable this, this is detected in scope of tasks, this is just a default value
  50. calico_upgrade_needed: false