chore: Bump minium helm version to 3.7 to match Kube 1.22

This commit is contained in:
Stefan Reimer 2022-04-26 18:10:13 +02:00
parent d8c576a6f8
commit 4492d59542
1 changed files with 1 additions and 1 deletions

View File

@ -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"