Add FELIX_IPTABLESBACKEND=auto

Signed-off-by: Chris Kim <oats87g@gmail.com>
pull/14/head
Chris Kim 2020-08-25 15:36:24 -07:00
parent 205159668a
commit e4c89e5290
2 changed files with 5 additions and 1 deletions

View File

@ -124,6 +124,8 @@ spec:
# Period, in seconds, at which felix re-applies all iptables state # Period, in seconds, at which felix re-applies all iptables state
- name: FELIX_IPTABLESREFRESHINTERVAL - name: FELIX_IPTABLESREFRESHINTERVAL
value: {{ .Values.calico.felixIptablesRefreshInterval | quote}} value: {{ .Values.calico.felixIptablesRefreshInterval | quote}}
- name: FELIX_IPTABLESBACKEND
value: {{ .Values.calico.felixIptablesBackend | quote}}
# No IP address needed. # No IP address needed.
- name: IP - name: IP
value: "" value: ""

View File

@ -8,7 +8,7 @@ flannel:
# kube-flannel image # kube-flannel image
image: image:
repository: rancher/flannel repository: rancher/flannel
tag: v0.11.0 tag: v0.13.0-rancher1-rc1
# The interface used by canal for host <-> host communication. # The interface used by canal for host <-> host communication.
# If left blank, then the interface is chosen using the node's # If left blank, then the interface is chosen using the node's
# default route. # default route.
@ -50,6 +50,8 @@ calico:
felixIpv6Support: false felixIpv6Support: false
# Period, in seconds, at which felix re-applies all iptables state # Period, in seconds, at which felix re-applies all iptables state
felixIptablesRefreshInterval: 60 felixIptablesRefreshInterval: 60
# iptables backend to use for felix, defaults to auto but can also be set to nft or legacy
felixIptablesBackend: auto
# Set Felix logging to "info". # Set Felix logging to "info".
felixLogSeverityScreen: info felixLogSeverityScreen: info
# Enable felix healthcheck. # Enable felix healthcheck.