From fdd1fed9dde84d70ae9eaa8da0719acb72af18e4 Mon Sep 17 00:00:00 2001 From: Stefan Prodan Date: Sat, 11 May 2024 10:25:24 +0300 Subject: [PATCH] Update Kubernetes to v1.30.0 Signed-off-by: Stefan Prodan --- .github/workflows/test.yaml | 2 ++ RESULTS.md | 2 +- scripts/kind-up.sh | 5 +++++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b1fef5f..d600467 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -28,6 +28,8 @@ jobs: run: make tools - name: Create cluster run: make up + env: + KIND_NODE_IMAGE: ghcr.io/fluxcd/kindest/node:v1.30.0-amd64 - name: Push modules run: make timoni-push - name: Install Flux diff --git a/RESULTS.md b/RESULTS.md index 0565da2..cde57a3 100644 --- a/RESULTS.md +++ b/RESULTS.md @@ -11,7 +11,7 @@ registry at the same time. **Specs** - GitHub hosted-runner (ubuntu-latest-16-cores) -- Kubernetes Kind (v1.28.0 / 3 nodes) +- Kubernetes Kind (3 nodes) - Flux source-controller (1CPU / 1Gi / concurrency 10) - Flux kustomize-controller (2CPU / 1Gi / concurrency 20) - Flux helm-controller (2CPU / 1Gi / concurrency 10) diff --git a/scripts/kind-up.sh b/scripts/kind-up.sh index 96a0109..872b731 100755 --- a/scripts/kind-up.sh +++ b/scripts/kind-up.sh @@ -12,6 +12,11 @@ reg_cluster_port='5000' node_image='kindest/node:v1.29.2' install_cluster() { + +if [[ -n "${KIND_NODE_IMAGE}" ]]; then + node_image="${KIND_NODE_IMAGE}" +fi + cat <