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 #836

Merged
merged 3 commits into from
Apr 12, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 10 additions & 6 deletions .pipelines/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,20 @@ jobs:
aks_linux:
REGISTRY: upstream.azurecr.io/azure-workload-identity
GINKGO_SKIP: \[AKSSoakOnly\]
kind_v1_24_7:
KIND_NODE_VERSION: v1.24.7
kind_v1_24_12:
KIND_NODE_VERSION: v1.24.12
LOCAL_ONLY: "true"
TEST_HELM_CHART: "true"
kind_v1_25_3:
KIND_NODE_VERSION: v1.25.3
kind_v1_25_8:
KIND_NODE_VERSION: v1.25.8
LOCAL_ONLY: "true"
TEST_HELM_CHART: "true"
kind_v1_26_0:
KIND_NODE_VERSION: v1.26.0
kind_v1_26_3:
KIND_NODE_VERSION: v1.26.3
LOCAL_ONLY: "true"
TEST_HELM_CHART: "true"
kind_v1_27_0:
KIND_NODE_VERSION: v1.27.0
LOCAL_ONLY: "true"
TEST_HELM_CHART: "true"
steps:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ GINKGO_VER := v2.1.6
GINKGO_BIN := ginkgo
GINKGO := $(TOOLS_BIN_DIR)/$(GINKGO_BIN)-$(GINKGO_VER)

KIND_VER := v0.14.0
KIND_VER := v0.18.0
KIND_BIN := kind
KIND := $(TOOLS_BIN_DIR)/$(KIND_BIN)-$(KIND_VER)

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Azure AD Workload Identity is the next iteration of [Azure AD Pod Identity][1] t

| Kubernetes Version | Supported |
| ------------------ | --------- |
| 1.27 | ✅ |
| 1.26 | ✅ |
| 1.25 | ✅ |
| 1.24 | ✅ |
Expand Down