Skip to content

Commit 5c93940

Browse files
jeremyederclaude
andcommitted
chore: update Kind node image from v1.28.0 to v1.35.0
The Kind cluster was using kindest/node:v1.28.0, nearly 2 years old. Update to v1.35.0 (Kind v0.31.0 default) for latest Kubernetes APIs. Also update minikube Kubernetes version for consistency. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d0542de commit 5c93940

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ local-up: check-minikube check-kubectl ## Start local development environment (m
236236
(minikube status >/dev/null 2>&1 && echo "$(COLOR_GREEN)$(COLOR_RESET) Minikube already running") || \
237237
(echo "$(COLOR_RED)$(COLOR_RESET) Failed to start minikube" && exit 1); \
238238
else \
239-
minikube start --driver=podman --memory=4096 --cpus=2 --kubernetes-version=v1.28.3 --container-runtime=cri-o $(QUIET_REDIRECT) || \
239+
minikube start --driver=podman --memory=4096 --cpus=2 --kubernetes-version=v1.35.0 --container-runtime=cri-o $(QUIET_REDIRECT) || \
240240
(minikube status >/dev/null 2>&1 && echo "$(COLOR_GREEN)$(COLOR_RESET) Minikube already running") || \
241241
(echo "$(COLOR_RED)$(COLOR_RESET) Failed to start minikube" && exit 1); \
242242
fi

e2e/scripts/setup-kind.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ kind: Cluster
6363
apiVersion: kind.x-k8s.io/v1alpha4
6464
nodes:
6565
- role: control-plane
66-
# Use more stable Kubernetes version for Podman compatibility
67-
image: kindest/node:v1.28.0@sha256:b7a4cad12c197af3ba43202d3efe03246b3f0793f162afb40a33c923952d5b31
66+
# Kind v0.31.0 default node image
67+
image: kindest/node:v1.35.0@sha256:452d707d4862f52530247495d180205e029056831160e22870e37e3f6c1ac31f
6868
extraPortMappings:
6969
- containerPort: 30080
7070
hostPort: ${HTTP_PORT}
@@ -77,7 +77,7 @@ EOF
7777
echo ""
7878
echo "✅ Kind cluster ready!"
7979
echo " Cluster: ambient-local"
80-
echo " Kubernetes: v1.28.0"
80+
echo " Kubernetes: v1.35.0"
8181
echo " NodePort: 30080 → host port ${HTTP_PORT}"
8282
echo ""
8383
echo "📝 Next steps:"

0 commit comments

Comments
 (0)