Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: enable tests with kubernetes v1.27 #1126

Merged
merged 2 commits into from
Apr 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 18 additions & 12 deletions .pipelines/templates/e2e-test-kind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,29 @@ jobs:
- group: csi-secrets-store-e2e-kind
strategy:
matrix:
kind_v1_24_7_helm:
KIND_K8S_VERSION: v1.24.7
kind_v1_24_12_helm:
KIND_K8S_VERSION: v1.24.12
IS_HELM_TEST: true
kind_v1_25_3_helm:
KIND_K8S_VERSION: v1.25.3
kind_v1_25_8_helm:
KIND_K8S_VERSION: v1.25.8
IS_HELM_TEST: true
kind_v1_26_0_helm:
KIND_K8S_VERSION: v1.26.0
kind_v1_26_3_helm:
KIND_K8S_VERSION: v1.26.3
IS_HELM_TEST: true
kind_v1_24_7_deployment_manifest:
KIND_K8S_VERSION: v1.24.7
kind_v1_27_1_helm:
KIND_K8S_VERSION: v1.27.1
IS_HELM_TEST: true
kind_v1_24_12_deployment_manifest:
KIND_K8S_VERSION: v1.24.12
IS_HELM_TEST: false
kind_v1_25_8_deployment_manifest:
KIND_K8S_VERSION: v1.25.8
IS_HELM_TEST: false
kind_v1_25_3_deployment_manifest:
KIND_K8S_VERSION: v1.25.3
kind_v1_26_3_deployment_manifest:
KIND_K8S_VERSION: v1.26.3
IS_HELM_TEST: false
kind_v1_26_0_deployment_manifest:
KIND_K8S_VERSION: v1.26.0
kind_v1_27_1_deployment_manifest:
KIND_K8S_VERSION: v1.27.1
IS_HELM_TEST: false

steps:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ BUILDKIT_VERSION ?= 0.10.6
STEP_CLI_VERSION=0.18.0

# E2E test variables
KIND_VERSION ?= 0.16.0
KIND_K8S_VERSION ?= v1.24.0
KIND_VERSION ?= 0.18.0
KIND_K8S_VERSION ?= v1.27.1
SHELLCHECK_VER ?= v0.8.0

$(TOOLS_DIR)/golangci-lint: $(TOOLS_MOD_DIR)/go.mod $(TOOLS_MOD_DIR)/go.sum $(TOOLS_MOD_DIR)/tools.go
Expand Down