This is an automated email from the ASF dual-hosted git repository.
ccondit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/yunikorn-k8shim.git
The following commit(s) were added to refs/heads/master by this push:
new badbb166 [YUNIKORN-2995] Add Kubernetes v1.32.0 to e2e test matrix
(#944)
badbb166 is described below
commit badbb16673313a629e37e21edffd3b4deb874a3e
Author: Craig Condit <[email protected]>
AuthorDate: Thu Dec 12 14:43:37 2024 -0600
[YUNIKORN-2995] Add Kubernetes v1.32.0 to e2e test matrix (#944)
Closes: #944
Signed-off-by: Craig Condit <[email protected]>
---
.github/workflows/pre-commit.yml | 9 +++++----
Makefile | 4 ++--
scripts/run-e2e-tests.sh | 11 ++++++-----
3 files changed, 13 insertions(+), 11 deletions(-)
diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml
index d31fe25c..969ade87 100644
--- a/.github/workflows/pre-commit.yml
+++ b/.github/workflows/pre-commit.yml
@@ -49,10 +49,11 @@ jobs:
matrix:
k8s:
[
- v1.31.1,
- v1.30.4,
- v1.29.8,
- v1.28.13,
+ v1.32.0,
+ v1.31.4,
+ v1.30.6,
+ v1.29.10,
+ v1.28.15,
v1.27.16,
v1.26.15,
v1.25.16,
diff --git a/Makefile b/Makefile
index add417a6..624196cc 100644
--- a/Makefile
+++ b/Makefile
@@ -70,7 +70,7 @@ export PATH := $(BASE_DIR)/$(TOOLS_DIR):$(GO_EXE_PATH):$(PATH)
# Default values for dev cluster
ifeq ($(K8S_VERSION),)
-K8S_VERSION := v1.31.1
+K8S_VERSION := v1.32.0
endif
ifeq ($(CLUSTER_NAME),)
CLUSTER_NAME := yk8s
@@ -176,7 +176,7 @@ KUBECTL_BIN=$(KUBECTL_PATH)/kubectl
export PATH := $(BASE_DIR)/$(KUBECTL_PATH):$(PATH)
# kind
-KIND_VERSION=v0.24.0
+KIND_VERSION=v0.25.0
KIND_PATH=$(TOOLS_DIR)/kind-$(KIND_VERSION)
KIND_BIN=$(KIND_PATH)/kind
export PATH := $(BASE_DIR)/$(KIND_PATH):$(PATH)
diff --git a/scripts/run-e2e-tests.sh b/scripts/run-e2e-tests.sh
index ede07f97..6ca2280c 100755
--- a/scripts/run-e2e-tests.sh
+++ b/scripts/run-e2e-tests.sh
@@ -195,13 +195,14 @@ Examples:
${NAME} -a test -n yk8s -v kindest/node:v1.25.16
${NAME} -a test -n yk8s -v kindest/node:v1.26.15
${NAME} -a test -n yk8s -v kindest/node:v1.27.16
- ${NAME} -a test -n yk8s -v kindest/node:v1.28.13
- ${NAME} -a test -n yk8s -v kindest/node:v1.29.8
- ${NAME} -a test -n yk8s -v kindest/node:v1.30.4
- ${NAME} -a test -n yk8s -v kindest/node:v1.31.1
+ ${NAME} -a test -n yk8s -v kindest/node:v1.28.15
+ ${NAME} -a test -n yk8s -v kindest/node:v1.29.10
+ ${NAME} -a test -n yk8s -v kindest/node:v1.30.6
+ ${NAME} -a test -n yk8s -v kindest/node:v1.31.4
+ ${NAME} -a test -n yk8s -v kindest/node:v1.32.0
Use a local helm chart path:
- ${NAME} -a test -n yk8s -v kindest/node:v1.31.1 -p
../yunikorn-release/helm-charts/yunikorn
+ ${NAME} -a test -n yk8s -v kindest/node:v1.32.0 -p
../yunikorn-release/helm-charts/yunikorn
EOF
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]