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 <prasanna.kalever@redhat.com>
This commit is contained in:
Prasanna Kumar Kalever 2021-03-12 14:49:02 +05:30 committed by mergify[bot]
parent 10a75dd4ff
commit 05b17d80ca
2 changed files with 2 additions and 2 deletions

View File

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

View File

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