mirror of https://git.rancher.io/rke2-charts
Pass featureDetectOverride
This fixes https://github.com/rancher/rke2/issues/1541 even for kernel version > 5.7 Signed-off-by: Manuel Buil <mbuil@suse.com>pull/136/head
parent
a7d060c644
commit
2acb4d1979
|
@ -0,0 +1,6 @@
|
||||||
|
apiVersion: crd.projectcalico.org/v1
|
||||||
|
kind: FelixConfiguration
|
||||||
|
metadata:
|
||||||
|
name: default
|
||||||
|
spec:
|
||||||
|
featureDetectOverride: {{ .Values.felixConfiguration.featureDetectOverride }}
|
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
certs:
|
certs:
|
||||||
node:
|
node:
|
||||||
@@ -17,9 +33,16 @@
|
@@ -17,9 +33,21 @@
|
||||||
|
|
||||||
# Configuration for the tigera operator
|
# Configuration for the tigera operator
|
||||||
tigeraOperator:
|
tigeraOperator:
|
||||||
|
@ -42,6 +42,11 @@
|
||||||
+global:
|
+global:
|
||||||
+ systemDefaultRegistry: ""
|
+ systemDefaultRegistry: ""
|
||||||
+
|
+
|
||||||
|
+# Config required by Windows nodes
|
||||||
+ipamConfig:
|
+ipamConfig:
|
||||||
+ strictAffinity: true
|
+ strictAffinity: true
|
||||||
+ autoAllocateBlocks: true
|
+ autoAllocateBlocks: true
|
||||||
|
+
|
||||||
|
+# Config required to fix RKE2 issue #1541
|
||||||
|
+felixConfiguration:
|
||||||
|
+ featureDetectOverride: "ChecksumOffloadBroken=true"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
url: https://github.com/projectcalico/calico/releases/download/v3.19.2/tigera-operator-v3.19.2-2.tgz
|
url: https://github.com/projectcalico/calico/releases/download/v3.19.2/tigera-operator-v3.19.2-2.tgz
|
||||||
packageVersion: 02
|
packageVersion: 03
|
||||||
additionalCharts:
|
additionalCharts:
|
||||||
- workingDir: charts-crd
|
- workingDir: charts-crd
|
||||||
crdOptions:
|
crdOptions:
|
||||||
|
|
Loading…
Reference in New Issue