From 2a3764d007dc220340edcf4c6b5fb13f5a40b83a Mon Sep 17 00:00:00 2001 From: Max Cao Date: Thu, 8 May 2025 18:28:00 -0700 Subject: [PATCH] VPA: use sha256 digest for local kind image Signed-off-by: Max Cao --- vertical-pod-autoscaler/hack/run-e2e-locally.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vertical-pod-autoscaler/hack/run-e2e-locally.sh b/vertical-pod-autoscaler/hack/run-e2e-locally.sh index 775021837c..2449e57ab0 100755 --- a/vertical-pod-autoscaler/hack/run-e2e-locally.sh +++ b/vertical-pod-autoscaler/hack/run-e2e-locally.sh @@ -74,7 +74,7 @@ echo "Deleting KIND cluster 'kind'." kind delete cluster -n kind -q echo "Creating KIND cluster 'kind'" -KIND_VERSION="kindest/node:v1.33.0" +KIND_VERSION="kindest/node:v1.33.0@sha256:02f73d6ae3f11ad5d543f16736a2cb2a63a300ad60e81dac22099b0b04784a4e" if ! kind create cluster --image=${KIND_VERSION}; then echo "Failed to create KIND cluster. Exiting. Make sure kind version is updated." echo "Available versions: https://github.com/kubernetes-sigs/kind/releases"