1
0
mirror of https://github.com/kubernetes-sigs/descheduler.git synced 2026-01-26 05:14:13 +01:00

Bump kind to v0.26.0

The new kind version defaults to k8s v1.32.0 version when creating
new clusters.
This commit is contained in:
Sean Malloy
2024-12-16 22:28:54 -06:00
parent 5c3a3bdcf1
commit b66b5d35f0

View File

@@ -43,7 +43,7 @@ if [ -n "$KIND_E2E" ]; then
curl -Lo kubectl https://dl.k8s.io/release/${K8S_VERSION}/bin/linux/amd64/kubectl && chmod +x kubectl && mv kubectl /usr/local/bin/
fi
if [ -z "${SKIP_KIND_INSTALL}" ]; then
wget https://github.com/kubernetes-sigs/kind/releases/download/v0.25.0/kind-linux-amd64
wget https://github.com/kubernetes-sigs/kind/releases/download/v0.26.0/kind-linux-amd64
chmod +x kind-linux-amd64
mv kind-linux-amd64 kind
export PATH=$PATH:$PWD