Skip to content
Snippets Groups Projects
Unverified Commit b19f2e2d authored by Minjong Kim's avatar Minjong Kim Committed by GitHub
Browse files

Update the calico_veth_mtu setting to affect IP-in-IP users (#6419)

* Update calico_veth_mtu to FELIX_IPINIP variable

calico_veth_mtu is specified in the configuration, but since it only works for wireguard, modify it to work for IP-in-IP users.

* Update template with more cleaner expression
parent 9c48f666
Branches
Tags
No related merge requests found
......@@ -232,7 +232,7 @@ spec:
# Set MTU for tunnel device used if ipip is enabled
{% if calico_mtu is defined %}
- name: FELIX_IPINIPMTU
value: "{{ calico_mtu }}"
value: "{{ calico_veth_mtu | default(calico_mtu) }}"
{% endif %}
- name: FELIX_CHAININSERTMODE
value: "{{ calico_felix_chaininsertmode }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment