From 39ef9fa0e7cf0a691325b61d3c54e0ba26ec4923 Mon Sep 17 00:00:00 2001 From: Damien Grisonnet Date: Thu, 16 May 2024 13:23:38 +0200 Subject: [PATCH] test: use official image of kind Signed-off-by: Damien Grisonnet --- test/run-e2e-tests.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/run-e2e-tests.sh b/test/run-e2e-tests.sh index d62e59a8..3f9784c1 100755 --- a/test/run-e2e-tests.sh +++ b/test/run-e2e-tests.sh @@ -20,7 +20,7 @@ set -o nounset # Tool versions K8S_VERSION=${KUBERNETES_VERSION:-v1.30.0} # cf https://hub.docker.com/r/kindest/node/tags -KIND_VERSION=${KIND_VERSION:-v0.22.2} # cf https://github.com/kubernetes-sigs/kind/releases +KIND_VERSION=${KIND_VERSION:-v0.23.0} # cf https://github.com/kubernetes-sigs/kind/releases PROM_OPERATOR_VERSION=${PROM_OPERATOR_VERSION:-v0.73.2} # cf https://github.com/prometheus-operator/prometheus-operator/releases # Variables; set to empty if unbound/empty @@ -90,8 +90,7 @@ if [[ -n "${KIND_E2E}" ]]; then export PATH="${BIN}:${PATH}" fi - # TODO: use the official image on a 1.30 version is available - kind create cluster --image "dgrisonnet/node:${K8S_VERSION}" + kind create cluster --image "kindest/node:${K8S_VERSION}" REGISTRY="localhost"