From 5a04ac78d5181b823c51e909e3672d7d58d2375d Mon Sep 17 00:00:00 2001 From: Stefan Reimer Date: Tue, 26 Apr 2022 18:10:13 +0200 Subject: [PATCH] chore: Bump minium helm version to 3.7 to match Kube 1.22 --- charts/kubezero/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/kubezero/bootstrap.sh b/charts/kubezero/bootstrap.sh index 87f4dfc1..0557e493 100755 --- a/charts/kubezero/bootstrap.sh +++ b/charts/kubezero/bootstrap.sh @@ -9,7 +9,7 @@ LOCATION=${4:-""} which yq || { echo "yq not found!"; exit 1; } which helm || { echo "helm not found!"; exit 1; } helm_version=$(helm version --short) -echo $helm_version | grep -qe "^v3.[5-9]" || { echo "Helm version >= 3.5 required!"; exit 1; } +echo $helm_version | grep -qe "^v3.[7-9]" || { echo "Helm version >= 3.7 required!"; exit 1; } # Simulate well-known CRDs being available API_VERSIONS="-a monitoring.coreos.com/v1 -a snapshot.storage.k8s.io/v1"