2018-02-17 03:37:47 +00:00
|
|
|
---
|
|
|
|
# Log-level
|
|
|
|
cilium_debug: false
|
2019-08-06 08:37:55 +00:00
|
|
|
|
2020-07-02 14:12:47 +00:00
|
|
|
cilium_mtu: ""
|
2019-08-06 08:37:55 +00:00
|
|
|
cilium_enable_ipv4: true
|
|
|
|
cilium_enable_ipv6: false
|
2018-02-17 03:37:47 +00:00
|
|
|
|
|
|
|
# Etcd SSL dirs
|
|
|
|
cilium_cert_dir: /etc/cilium/certs
|
2019-04-19 13:01:54 +00:00
|
|
|
kube_etcd_cacert_file: ca.pem
|
|
|
|
kube_etcd_cert_file: node-{{ inventory_hostname }}.pem
|
|
|
|
kube_etcd_key_file: node-{{ inventory_hostname }}-key.pem
|
2018-02-17 03:37:47 +00:00
|
|
|
|
|
|
|
# Limits for apps
|
|
|
|
cilium_memory_limit: 500M
|
2018-07-26 20:17:27 +00:00
|
|
|
cilium_cpu_limit: 500m
|
2018-02-17 03:37:47 +00:00
|
|
|
cilium_memory_requests: 64M
|
2018-07-26 20:17:27 +00:00
|
|
|
cilium_cpu_requests: 100m
|
2018-02-17 03:37:47 +00:00
|
|
|
|
2019-11-11 11:19:42 +00:00
|
|
|
# Overlay Network Mode
|
|
|
|
cilium_tunnel_mode: vxlan
|
2018-02-17 03:37:47 +00:00
|
|
|
# Optional features
|
|
|
|
cilium_enable_prometheus: false
|
2019-08-06 08:37:55 +00:00
|
|
|
# Enable if you want to make use of hostPort mappings
|
|
|
|
cilium_enable_portmap: false
|
2020-03-11 15:15:36 +00:00
|
|
|
# Monitor aggregation level (none/low/medium/maximum)
|
|
|
|
cilium_monitor_aggregation: medium
|
2020-07-30 09:46:31 +00:00
|
|
|
# Kube Proxy Replacement mode (strict/probe/partial)
|
|
|
|
cilium_kube_proxy_replacement: probe
|
2019-08-06 08:37:55 +00:00
|
|
|
|
|
|
|
# If upgrading from Cilium < 1.5, you may want to override some of these options
|
|
|
|
# to prevent service disruptions. See also:
|
|
|
|
# http://docs.cilium.io/en/stable/install/upgrade/#changes-that-may-require-action
|
|
|
|
cilium_preallocate_bpf_maps: false
|
|
|
|
cilium_tofqdns_enable_poller: false
|
|
|
|
cilium_enable_legacy_services: false
|
2020-07-17 12:57:01 +00:00
|
|
|
|
|
|
|
# Deploy cilium even if kube_network_plugin is not cilium.
|
|
|
|
# This enables to deploy cilium alongside another CNI to replace kube-proxy.
|
|
|
|
cilium_deploy_additionally: false
|
2020-08-18 07:39:42 +00:00
|
|
|
|
|
|
|
# Auto direct nodes routes can be used to advertise pods routes in your cluster
|
|
|
|
# without any tunelling (with `cilium_tunnel_mode` sets to `disabled`).
|
|
|
|
# This works only if you have a L2 connectivity between all your nodes.
|
|
|
|
# You wil also have to specify the variable `cilium_native_routing_cidr` to
|
|
|
|
# make this work. Please refer to the cilium documentation for more
|
|
|
|
# information about this kind of setups.
|
|
|
|
cilium_auto_direct_node_routes: false
|
|
|
|
cilium_native_routing_cidr: ""
|
2021-03-23 20:46:06 +00:00
|
|
|
|
|
|
|
# IPsec based transparent encryption between nodes
|
2021-04-01 14:33:22 +00:00
|
|
|
cilium_ipsec_enabled: false
|
|
|
|
|
2021-04-30 15:09:59 +00:00
|
|
|
# Hubble
|
|
|
|
### Enable Hubble without install
|
|
|
|
cilium_enable_hubble: false
|
|
|
|
### Enable Hubble Metrics
|
|
|
|
cilium_enable_hubble_metrics: false
|
|
|
|
### if cilium_enable_hubble_metrics: true
|
|
|
|
cilium_hubble_metrics: {}
|
|
|
|
# - dns
|
|
|
|
# - drop
|
|
|
|
# - tcp
|
|
|
|
# - flow
|
|
|
|
# - icmp
|
|
|
|
# - http
|
|
|
|
### Enable Hubble install
|
|
|
|
cilium_hubble_install: false
|
|
|
|
### Enable auto generate certs if cilium_hubble_install: true
|
|
|
|
cilium_hubble_tls_generate: false
|
|
|
|
|
2021-04-01 14:33:22 +00:00
|
|
|
# IP address management mode for v1.9+.
|
|
|
|
# https://docs.cilium.io/en/v1.9/concepts/networking/ipam/
|
|
|
|
cilium_ipam_mode: kubernetes
|
2021-04-30 15:09:59 +00:00
|
|
|
|
2021-08-24 10:49:13 +00:00
|
|
|
# The address at which the cillium operator bind health check api
|
|
|
|
cilium_operator_api_serve_addr: "127.0.0.1:9234"
|
|
|
|
|
2021-04-30 15:09:59 +00:00
|
|
|
## A dictionary of extra config variables to add to cilium-config, formatted like:
|
|
|
|
## cilium_config_extra_vars:
|
|
|
|
## var1: "value1"
|
|
|
|
## var2: "value2"
|
|
|
|
cilium_config_extra_vars: {}
|