mirror of https://git.rancher.io/rke2-charts
cilium: Fix the eni value
The upstream Cilium chart changed the type of `eni` value to a nested object. Adjust our rke2-cilium chart to that change. Ref: rancher/rke2#1615 Signed-off-by: Michal Rostecki <mrostecki@opensuse.org>pull/146/head
parent
33c2dbbff5
commit
7be6855132
|
@ -25,7 +25,12 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"eni": {
|
"eni": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"enabled": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"image": {
|
"image": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
|
|
@ -40,7 +40,9 @@ cilium:
|
||||||
#
|
#
|
||||||
# Enable Elastic Network Interface (ENI) for AWS integration.
|
# Enable Elastic Network Interface (ENI) for AWS integration.
|
||||||
#
|
#
|
||||||
eni: false
|
eni:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
ipam:
|
ipam:
|
||||||
# Set mode to "eni" for ENI AWS intetgration.
|
# Set mode to "eni" for ENI AWS intetgration.
|
||||||
mode: "kubernetes"
|
mode: "kubernetes"
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
url: local
|
url: local
|
||||||
packageVersion: 01
|
packageVersion: 02
|
||||||
releaseCandidateVersion: 00
|
releaseCandidateVersion: 00
|
||||||
|
|
Loading…
Reference in New Issue