Compare commits

...

2 Commits

Author SHA1 Message Date
Techno Tim
70d7592f85 Merge branch 'master' into kube_vip_arp 2024-07-29 13:24:30 -05:00
Christian Berendt
5a9d8fad74 k3s_server: add kube_vip_arp parameter
With the kube_vip_arp parameter it is possible to set or unset the
vip_arp environment variable of the kube-vip-ds daemonset. The value of
the kube_vip_arp is true by default to not change the existing default.

Signed-off-by: Christian Berendt <berendt@osism.tech>
2024-07-29 14:28:38 +02:00
2 changed files with 4 additions and 1 deletions

View File

@@ -4,6 +4,9 @@
# will determine the right interface automatically at runtime.
kube_vip_iface: null
# Enables ARP broadcasts from Leader
kube_vip_arp: true
# Name of the master group
group_name_master: master

View File

@@ -27,7 +27,7 @@ spec:
- manager
env:
- name: vip_arp
value: "true"
value: "{{ 'true' if kube_vip_arp | bool else 'false' }}"
- name: port
value: "6443"
{% if kube_vip_iface %}