mirror of https://git.rancher.io/rke2-charts
Add option IP autodetection methods
See below for a detailed explanation of the options. https://projectcalico.docs.tigera.io/reference/node/configuration#ip-autodetection-methodspull/208/head
parent
f36605a9a7
commit
1a9b296d9e
|
@ -152,6 +152,12 @@ spec:
|
|||
value: {{ .Values.calico.felixFailsafeInboundHostPorts | quote }}
|
||||
- name: FELIX_FAILSAFEOUTBOUNDHOSTPORTS
|
||||
value: {{ .Values.calico.felixFailsafeOutboundHostPorts | quote }}
|
||||
# The method to use to autodetect the IPv4 address for this host.
|
||||
- name: IP_AUTODETECTION_METHOD
|
||||
value: {{ .Values.calico.ipAutoDetectionMethod | quote }}
|
||||
# The method to use to autodetect the IPv6 address for this host.
|
||||
- name: IP6_AUTODETECTION_METHOD
|
||||
value: {{ .Values.calico.ip6AutoDetectionMethod | quote }}
|
||||
securityContext:
|
||||
privileged: true
|
||||
resources:
|
||||
|
|
|
@ -75,6 +75,10 @@ calico:
|
|||
felixFailsafeInboundHostPorts: ""
|
||||
# calico outbound failsafe ports. Empty string means defaults. Use 'none' to disable failsafe if you have your own rules.
|
||||
felixFailsafeOutboundHostPorts: ""
|
||||
# The method to use to autodetect the IPv4 address for this host.
|
||||
ipAutoDetectionMethod: "first-found"
|
||||
# The method to use to autodetect the IPv6 address for this host.
|
||||
ip6AutoDetectionMethod: "first-found"
|
||||
|
||||
global:
|
||||
systemDefaultRegistry: ""
|
||||
|
|
Loading…
Reference in New Issue