From 05b17d80cafc4db860675be546d1f81cb24420a3 Mon Sep 17 00:00:00 2001 From: Prasanna Kumar Kalever Date: Fri, 12 Mar 2021 14:49:02 +0530 Subject: [PATCH] deploy: bump the external snapshotter version We have a new release v4.0.0 of https://github.com/kubernetes-csi/external-snapshotter Adjusting SNAPSHOT_VERSION will pull the latest controller and CRDs Signed-off-by: Prasanna Kumar Kalever --- build.env | 2 +- scripts/install-snapshot.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.env b/build.env index cc974d643..044b9eebb 100644 --- a/build.env +++ b/build.env @@ -25,7 +25,7 @@ GOSEC_VERSION=v2.3.0 # external snapshotter version # Refer: https://github.com/kubernetes-csi/external-snapshotter/releases -SNAPSHOT_VERSION=v3.0.1 +SNAPSHOT_VERSION=v4.0.0 # "go test" configuration # set to stdout or html to enable coverage reporting, disabled by default diff --git a/scripts/install-snapshot.sh b/scripts/install-snapshot.sh index 42cff8421..8ba912809 100755 --- a/scripts/install-snapshot.sh +++ b/scripts/install-snapshot.sh @@ -7,7 +7,7 @@ SCRIPT_DIR="$(dirname "${0}")" # shellcheck source=build.env source "${SCRIPT_DIR}/../build.env" -SNAPSHOT_VERSION=${SNAPSHOT_VERSION:-"v3.0.1"} +SNAPSHOT_VERSION=${SNAPSHOT_VERSION:-"v4.0.0"} TEMP_DIR="$(mktemp -d)" SNAPSHOTTER_URL="https://raw.githubusercontent.com/kubernetes-csi/external-snapshotter/${SNAPSHOT_VERSION}"