From 9351ff68af0e996efc8733496a1024dcdce16a5a Mon Sep 17 00:00:00 2001 From: Stefan Prodan Date: Thu, 4 Jun 2026 20:12:46 +0300 Subject: [PATCH] Run conformance tests for Kubernetes 1.36 Signed-off-by: Stefan Prodan --- .github/workflows/conformance.yaml | 8 ++++---- .github/workflows/e2e-bootstrap.yaml | 6 +++--- .github/workflows/e2e.yaml | 10 +++++----- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/conformance.yaml b/.github/workflows/conformance.yaml index a340e0a4..732a429a 100644 --- a/.github/workflows/conformance.yaml +++ b/.github/workflows/conformance.yaml @@ -19,7 +19,7 @@ jobs: matrix: # Keep this list up-to-date with https://endoflife.date/kubernetes # Build images with https://github.com/fluxcd/flux-benchmark/actions/workflows/build-kind.yaml - KUBERNETES_VERSION: [1.33.0, 1.34.1, 1.35.0] + KUBERNETES_VERSION: [1.34.1, 1.35.2, 1.36.1] fail-fast: false steps: - name: Checkout @@ -42,7 +42,7 @@ jobs: - name: Setup Kubernetes uses: helm/kind-action@ef37e7f390d99f746eb8b610417061a60e82a6cc # v1.14.0 with: - version: v0.30.0 + version: v0.32.0 cluster_name: ${{ steps.prep.outputs.CLUSTER }} node_image: ghcr.io/fluxcd/kindest/node:v${{ matrix.KUBERNETES_VERSION }}-arm64 - name: Run e2e tests @@ -76,7 +76,7 @@ jobs: matrix: # Keep this list up-to-date with https://endoflife.date/kubernetes # Available versions can be found with "replicated cluster versions" - K3S_VERSION: [ 1.33.7, 1.34.3, 1.35.0 ] + K3S_VERSION: [ 1.34.8, 1.35.5, 1.36.1 ] fail-fast: false steps: - name: Checkout @@ -168,7 +168,7 @@ jobs: strategy: matrix: # Keep this list up-to-date with https://endoflife.date/red-hat-openshift - OPENSHIFT_VERSION: [ 4.20.0-okd ] + OPENSHIFT_VERSION: [ 4.20.0-okd, 4.21.0-okd ] fail-fast: false steps: - name: Checkout diff --git a/.github/workflows/e2e-bootstrap.yaml b/.github/workflows/e2e-bootstrap.yaml index 68f306b6..52f8a771 100644 --- a/.github/workflows/e2e-bootstrap.yaml +++ b/.github/workflows/e2e-bootstrap.yaml @@ -28,12 +28,12 @@ jobs: - name: Setup Kubernetes uses: helm/kind-action@ef37e7f390d99f746eb8b610417061a60e82a6cc # v1.14.0 with: - version: v0.30.0 + version: v0.32.0 cluster_name: kind # The versions below should target the newest Kubernetes version # Keep this up-to-date with https://endoflife.date/kubernetes - node_image: ghcr.io/fluxcd/kindest/node:v1.33.0-amd64 - kubectl_version: v1.33.0 + node_image: ghcr.io/fluxcd/kindest/node:v1.36.1-amd64 + kubectl_version: v1.36.0 - name: Setup Kustomize uses: fluxcd/pkg/actions/kustomize@f3ad4b56adec90eb5661af565cdebec997ad4bfb # main - name: Setup yq diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 78506549..6a0d2e67 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -18,7 +18,7 @@ jobs: labels: ubuntu-latest-16-cores services: registry: - image: registry:2 + image: registry:3 ports: - 5000:5000 steps: @@ -34,17 +34,17 @@ jobs: - name: Setup Kubernetes uses: helm/kind-action@ef37e7f390d99f746eb8b610417061a60e82a6cc # v1.14.0 with: - version: v0.30.0 + version: v0.32.0 cluster_name: kind wait: 5s config: .github/kind/config.yaml # disable KIND-net # The versions below should target the oldest supported Kubernetes version # Keep this up-to-date with https://endoflife.date/kubernetes - node_image: ghcr.io/fluxcd/kindest/node:v1.33.0-amd64 - kubectl_version: v1.33.0 + node_image: ghcr.io/fluxcd/kindest/node:v1.34.1-amd64 + kubectl_version: v1.34.0 - name: Setup Calico for network policy run: | - kubectl apply -f https://raw.githubusercontent.com/projectcalico/calico/v3.27.3/manifests/calico.yaml + kubectl apply -f https://raw.githubusercontent.com/projectcalico/calico/v3.32.0/manifests/calico.yaml - name: Setup Kustomize uses: fluxcd/pkg/actions/kustomize@f3ad4b56adec90eb5661af565cdebec997ad4bfb # main - name: Run tests