From 77799be45ca487a7ad555f6ac9c69c16379f62c2 Mon Sep 17 00:00:00 2001 From: Zlatko Bratkovic Date: Tue, 17 Dec 2024 16:35:11 +0100 Subject: [PATCH] MEDIUM: ci: add k8s 1.32 to tests --- .github/workflows/actions.yml | 2 +- .gitlab-ci.yml | 28 ++++++++++++++-------------- deploy/tests/kind-config.yaml | 2 +- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 7554779d..96890c76 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -128,7 +128,7 @@ jobs: e2e: strategy: matrix: - k8s-version: ["v1.31.0"] + k8s-version: ["v1.32.0"] needs: ["build"] runs-on: ubuntu-latest steps: diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d690881e..f4794f3a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,11 +4,11 @@ stages: - unit-tests - build - e2e-tests - - e2e_k8s_28 - - e2e_k8s_29 - e2e_k8s_30 + - e2e_k8s_31 + - e2e_k8s_32 variables: - KIND: v0.24.0 + KIND: v0.26.0 DOCKER_HOST: tcp://docker:2375 DOCKER_DRIVER: overlay2 GO_VERSION: "1.23" @@ -205,27 +205,27 @@ docker-build: rules: - if: $CI_PIPELINE_SOURCE == "schedule" allow_failure: true -e2e_k8s_29: - stage: e2e_k8s_29 - needs: ["docker-build"] - variables: - K8S_VERSION: v1.29.8 - KUBEADM_VER: v1beta3 - KUBECTL: v1.29.8 - extends: .kind_deployment_schedules e2e_k8s_30: stage: e2e_k8s_30 needs: ["docker-build"] variables: - K8S_VERSION: v1.30.4 + K8S_VERSION: v1.30.8 KUBEADM_VER: v1beta3 KUBECTL: v1.30.4 extends: .kind_deployment_schedules e2e_k8s_31: - stage: e2e_k8s_30 + stage: e2e_k8s_31 + needs: ["docker-build"] + variables: + K8S_VERSION: v1.31.4 + KUBEADM_VER: v1beta3 + KUBECTL: v1.31.0 + extends: .kind_deployment_schedules +e2e_k8s_32: + stage: e2e_k8s_32 needs: ["docker-build"] variables: - K8S_VERSION: v1.31.0 + K8S_VERSION: v1.32.0 KUBEADM_VER: v1beta3 KUBECTL: v1.31.0 extends: .kind_deployment diff --git a/deploy/tests/kind-config.yaml b/deploy/tests/kind-config.yaml index c57c7cd0..5132a022 100644 --- a/deploy/tests/kind-config.yaml +++ b/deploy/tests/kind-config.yaml @@ -6,7 +6,7 @@ networking: kind: Cluster nodes: - role: control-plane - image: kindest/node:v1.31.0 + image: kindest/node:v1.32.0 extraPortMappings: - hostPort: 30080 containerPort: 30080