Skip to content

build: Add k8s 1.28 KinD for testing by default #295

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

Merged
merged 1 commit into from
Jan 18, 2024
Merged
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
10 changes: 5 additions & 5 deletions make/kind.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ KIND_CLUSTER_NAME ?= $(GITHUB_REPOSITORY)-dev
KIND_KUBECONFIG ?= $(KIND_DIR)/$(KIND_CLUSTER_NAME)/kubeconfig

KINDEST_NODE_IMAGE ?= ghcr.io/mesosphere/kind-node
KINDEST_NODE_VERSION_v1.25 ?= v1.25.13
KINDEST_NODE_VERSION_v1.26 ?= v1.26.8
KINDEST_NODE_VERSION_v1.27 ?= v1.27.5
KINDEST_NODE_VERSION_v1.28 ?= v1.28.1
KINDEST_NODE_VERSION_v1.26 ?= v1.26.13
KINDEST_NODE_VERSION_v1.27 ?= v1.27.10
KINDEST_NODE_VERSION_v1.28 ?= v1.28.6
KINDEST_NODE_VERSION_v1.29 ?= v1.29.1
# Allow easy override of Kubernetes version to use via `make KIND_KUBERNETES_VERSION=v1.23` to use in CI
KIND_KUBERNETES_VERSION ?= v1.27
KIND_KUBERNETES_VERSION ?= v1.28
ifndef KINDEST_NODE_VERSION_$(KIND_KUBERNETES_VERSION)
$(error Unsupported Kind Kubernetes version: $(KIND_KUBERNETES_VERSION) (use on of: [$(patsubst KINDEST_NODE_VERSION_%,%,$(filter KINDEST_NODE_VERSION_%,$(.VARIABLES)))]))
endif
Expand Down