gatekeeper icon indicating copy to clipboard operation
gatekeeper copied to clipboard

ci: Update Kubernetes versions to latest three minor releases

Open Copilot opened this issue 3 months ago • 2 comments

What this PR does / why we need it:

Updates CI test matrix and Makefile to use the latest three Kubernetes minor versions available in KIND (Kubernetes in Docker).

Which issue(s) this PR fixes (optional, using fixes #<issue number>(, fixes #<issue_number>, ...) format, will close the issue(s) when the PR gets merged): Fixes #

Special notes for your reviewer:

Changes

  • Workflow matrices (.github/workflows/workflow.yaml, .github/workflows/test-gator.yaml): Updated from ["1.31.6", "1.32.3", "1.33.2"] to ["1.32.8", "1.33.4", "1.34.0"]
  • Makefile: Updated default KUBERNETES_VERSION from 1.33.0 to 1.34.0
  • AGENTS.md: Updated version range documentation to reflect 1.32-1.34

This maintains the project's policy of testing against the latest three supported Kubernetes minor versions.

Note on Version Selection

The versions selected (1.32.8, 1.33.4, 1.34.0) represent the latest available KIND node images for each minor version. While newer Kubernetes patch releases exist (1.32.10, 1.33.6, 1.34.2), KIND images are not yet available for those versions. KIND image availability typically lags behind Kubernetes releases, which is why we use the most recent patch version that has a corresponding KIND node image.

Original prompt

update kubernets version to latest three version in workflow files for CI, update kubernets version to latest in Makefile.


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Copilot avatar Nov 20 '25 18:11 Copilot

@copilot can you fix the CI error?

JaydipGabani avatar Nov 22 '25 01:11 JaydipGabani

@copilot can you fix the CI error?

Fixed in c340dd6. The CI error was caused by using Kubernetes versions that don't have corresponding KIND (Kubernetes in Docker) images yet. Updated to use the latest available KIND images for each minor version: 1.32.8, 1.33.4, and 1.34.0.

Copilot avatar Nov 22 '25 01:11 Copilot