Skip to content
Snippets Groups Projects
Unverified Commit 374438a3 authored by MatthieuFin's avatar MatthieuFin Committed by GitHub
Browse files

feat(calico): add possibility to enable calico floatingIPs feature (#9680)


Add a variable `calico_felix_floatingIPs` which permit to enable calico feature `floatingIPs`
(disabled per default).

Signed-off-by: default avatarMatthieuFin <matthieu2717@gmail.com>

 #9679
parent fd80ef1f
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,10 @@ calico_bpf_log_level: ""
# Valid option for service mode: Tunnel (default), DSR=Direct Server Return
calico_bpf_service_mode: Tunnel
# Calico floatingIPs support
# Valid option for floatingIPs: Disabled (default), Enabled
calico_felix_floating_ips: Disabled
# Limits for apps
calico_node_memory_limit: 500M
calico_node_cpu_limit: 300m
......
......@@ -188,7 +188,8 @@
"wireguardEnabled": {{ calico_wireguard_enabled | bool }},
"logSeverityScreen": "{{ calico_felix_log_severity_screen }}",
"vxlanEnabled": {{ calico_vxlan_mode != 'Never' }},
"featureDetectOverride": "{{ calico_feature_detect_override }}"
"featureDetectOverride": "{{ calico_feature_detect_override }}",
"floatingIPs": "{{ calico_felix_floating_ips }}"
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment