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
Michal Rostecki 2021-09-10 18:56:04 +02:00
parent 33c2dbbff5
commit 7be6855132
3 changed files with 10 additions and 3 deletions

View File

@ -25,7 +25,12 @@
}
},
"eni": {
"type": "boolean"
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
}
}
},
"image": {
"type": "object",

View File

@ -40,7 +40,9 @@ cilium:
#
# Enable Elastic Network Interface (ENI) for AWS integration.
#
eni: false
eni:
enabled: false
ipam:
# Set mode to "eni" for ENI AWS intetgration.
mode: "kubernetes"

View File

@ -1,3 +1,3 @@
url: local
packageVersion: 01
packageVersion: 02
releaseCandidateVersion: 00