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: remove kubernetes version 1.20 (EOL) #847

Merged
merged 1 commit into from
Mar 31, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
30 changes: 12 additions & 18 deletions .pipelines/templates/e2e-test-kind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,23 @@ jobs:
- group: csi-secrets-store-e2e-kind
strategy:
matrix:
kind_v1_20_7_helm:
KIND_K8S_VERSION: v1.20.7
kind_v1_21_10_helm:
KIND_K8S_VERSION: v1.21.10
IS_HELM_TEST: true
kind_v1_21_2_helm:
KIND_K8S_VERSION: v1.21.2
kind_v1_22_7_helm:
KIND_K8S_VERSION: v1.22.7
IS_HELM_TEST: true
kind_v1_22_4_helm:
KIND_K8S_VERSION: v1.22.4
kind_v1_23_5_helm:
KIND_K8S_VERSION: v1.23.5
IS_HELM_TEST: true
kind_v1_23_3_helm:
KIND_K8S_VERSION: v1.23.3
IS_HELM_TEST: true
kind_v1_20_7_deployment_manifest:
KIND_K8S_VERSION: v1.20.7
IS_HELM_TEST: false
kind_v1_21_2_deployment_manifest:
KIND_K8S_VERSION: v1.21.2
kind_v1_21_10_deployment_manifest:
KIND_K8S_VERSION: v1.21.10
IS_HELM_TEST: false
kind_v1_22_4_deployment_manifest:
KIND_K8S_VERSION: v1.22.4
kind_v1_22_7_deployment_manifest:
KIND_K8S_VERSION: v1.22.7
IS_HELM_TEST: false
kind_v1_23_3_deployment_manifest:
KIND_K8S_VERSION: v1.23.3
kind_v1_23_5_deployment_manifest:
KIND_K8S_VERSION: v1.23.5
IS_HELM_TEST: false

steps:
Expand Down
10 changes: 4 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ BUILDX_BUILDER_NAME ?= img-builder
STEP_CLI_VERSION=0.18.0

# E2E test variables
KIND_VERSION ?= 0.11.0
KIND_K8S_VERSION ?= v1.22.4
SHELLCHECK_VER ?= v0.7.2
KIND_VERSION ?= 0.12.0
KIND_K8S_VERSION ?= v1.23.5
SHELLCHECK_VER ?= v0.8.0

$(TOOLS_DIR)/golangci-lint: $(TOOLS_MOD_DIR)/go.mod $(TOOLS_MOD_DIR)/go.sum $(TOOLS_MOD_DIR)/tools.go
cd $(TOOLS_MOD_DIR) && \
Expand Down Expand Up @@ -237,9 +237,7 @@ e2e-kind-cleanup:
kind delete cluster --name kind

.PHONY: helm-lint
helm-lint:
# Download and install Helm
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
helm-lint: install-helm
# install driver dep as helm 3.4.0 requires dependencies for helm lint
helm dep update charts/csi-secrets-store-provider-azure
helm dep update manifest_staging/charts/csi-secrets-store-provider-azure
Expand Down
4 changes: 2 additions & 2 deletions website/content/en/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Azure Key Vault provider for [Secrets Store CSI Driver](https://github.com/kuber

| Azure Key Vault Provider | Compatible Kubernetes | `secrets-store.csi.x-k8s.io` Versions |
| ---------------------------------------------------------------------------------------------- | --------------------- | ------------------------------------- |
| [v1.0.0](https://github.com/Azure/secrets-store-csi-driver-provider-azure/releases/tag/v1.0.0) | 1.19+ | `v1`, `v1alpha1` |
| [v0.2.0](https://github.com/Azure/secrets-store-csi-driver-provider-azure/releases/tag/v0.2.0) | 1.19+ | `v1alpha1` |
| [v1.1.0](https://github.com/Azure/secrets-store-csi-driver-provider-azure/releases/tag/v1.1.0) | 1.21+ | `v1`, `v1alpha1 [DEPRECATED]` |
| [v1.0.1](https://github.com/Azure/secrets-store-csi-driver-provider-azure/releases/tag/v1.0.1) | 1.21+ | `v1alpha1` |

For Secrets Store CSI Driver project status and supported versions, check the doc [here](https://secrets-store-csi-driver.sigs.k8s.io/#project-status)

Expand Down