From 85495eef48f31e55baa73a9bb44e2c121120a263 Mon Sep 17 00:00:00 2001 From: danfengl Date: Sat, 11 May 2024 05:39:56 +0000 Subject: [PATCH] Fix makefile param issue Using VERSION instead of VELERO_VERSION, since VERSION is passed from root Makefile. Signed-off-by: danfengl --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 01b45a7ad..5d77f8abc 100644 --- a/test/Makefile +++ b/test/Makefile @@ -132,7 +132,7 @@ POD_VOLUME_OPERATION_TIMEOUT ?= 6h COMMON_ARGS := -velerocli=$(VELERO_CLI) \ -velero-image=$(VELERO_IMAGE) \ -plugins=$(PLUGINS) \ - -velero-version=$(VELERO_VERSION) \ + -velero-version=$(VERSION) \ -restore-helper-image=$(RESTORE_HELPER_IMAGE) \ -velero-namespace=$(VELERO_NAMESPACE) \ -credentials-file=$(CREDS_FILE) \