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.

81 lines
2.5 KiB

  1. ---
  2. # Log-level
  3. cilium_debug: false
  4. cilium_mtu: ""
  5. cilium_enable_ipv4: true
  6. cilium_enable_ipv6: false
  7. # Etcd SSL dirs
  8. cilium_cert_dir: /etc/cilium/certs
  9. kube_etcd_cacert_file: ca.pem
  10. kube_etcd_cert_file: node-{{ inventory_hostname }}.pem
  11. kube_etcd_key_file: node-{{ inventory_hostname }}-key.pem
  12. # Limits for apps
  13. cilium_memory_limit: 500M
  14. cilium_cpu_limit: 500m
  15. cilium_memory_requests: 64M
  16. cilium_cpu_requests: 100m
  17. # Overlay Network Mode
  18. cilium_tunnel_mode: vxlan
  19. # Optional features
  20. cilium_enable_prometheus: false
  21. # Enable if you want to make use of hostPort mappings
  22. cilium_enable_portmap: false
  23. # Monitor aggregation level (none/low/medium/maximum)
  24. cilium_monitor_aggregation: medium
  25. # Kube Proxy Replacement mode (strict/probe/partial)
  26. cilium_kube_proxy_replacement: probe
  27. # If upgrading from Cilium < 1.5, you may want to override some of these options
  28. # to prevent service disruptions. See also:
  29. # http://docs.cilium.io/en/stable/install/upgrade/#changes-that-may-require-action
  30. cilium_preallocate_bpf_maps: false
  31. cilium_tofqdns_enable_poller: false
  32. cilium_enable_legacy_services: false
  33. # Deploy cilium even if kube_network_plugin is not cilium.
  34. # This enables to deploy cilium alongside another CNI to replace kube-proxy.
  35. cilium_deploy_additionally: false
  36. # Auto direct nodes routes can be used to advertise pods routes in your cluster
  37. # without any tunelling (with `cilium_tunnel_mode` sets to `disabled`).
  38. # This works only if you have a L2 connectivity between all your nodes.
  39. # You wil also have to specify the variable `cilium_native_routing_cidr` to
  40. # make this work. Please refer to the cilium documentation for more
  41. # information about this kind of setups.
  42. cilium_auto_direct_node_routes: false
  43. cilium_native_routing_cidr: ""
  44. # IPsec based transparent encryption between nodes
  45. cilium_ipsec_enabled: false
  46. # Hubble
  47. ### Enable Hubble without install
  48. cilium_enable_hubble: false
  49. ### Enable Hubble Metrics
  50. cilium_enable_hubble_metrics: false
  51. ### if cilium_enable_hubble_metrics: true
  52. cilium_hubble_metrics: {}
  53. # - dns
  54. # - drop
  55. # - tcp
  56. # - flow
  57. # - icmp
  58. # - http
  59. ### Enable Hubble install
  60. cilium_hubble_install: false
  61. ### Enable auto generate certs if cilium_hubble_install: true
  62. cilium_hubble_tls_generate: false
  63. # IP address management mode for v1.9+.
  64. # https://docs.cilium.io/en/v1.9/concepts/networking/ipam/
  65. cilium_ipam_mode: kubernetes
  66. ## A dictionary of extra config variables to add to cilium-config, formatted like:
  67. ## cilium_config_extra_vars:
  68. ## var1: "value1"
  69. ## var2: "value2"
  70. cilium_config_extra_vars: {}