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.

37 lines
965 B

  1. ---
  2. # The interface used by canal for host <-> host communication.
  3. # If left blank, then the interface is choosing using the node's
  4. # default route.
  5. canal_iface: ""
  6. # Whether or not to masquerade traffic to destinations not within
  7. # the pod network.
  8. canal_masquerade: "true"
  9. # Log-level
  10. canal_log_level: "info"
  11. # Etcd SSL dirs
  12. canal_cert_dir: /etc/canal/certs
  13. # Canal Network Policy directory
  14. canal_policy_dir: /etc/kubernetes/policy
  15. # Limits for apps
  16. calico_node_memory_limit: 500M
  17. calico_node_cpu_limit: 200m
  18. calico_node_memory_requests: 64M
  19. calico_node_cpu_requests: 50m
  20. flannel_memory_limit: 500M
  21. flannel_cpu_limit: 200m
  22. flannel_memory_requests: 64M
  23. flannel_cpu_requests: 50m
  24. calicoctl_memory_limit: 170M
  25. calicoctl_cpu_limit: 100m
  26. calicoctl_memory_requests: 32M
  27. calicoctl_cpu_requests: 25m
  28. # etcd cert filenames
  29. kube_etcd_cacert_file: ca.pem
  30. kube_etcd_cert_file: node-{{ inventory_hostname }}.pem
  31. kube_etcd_key_file: node-{{ inventory_hostname }}-key.pem