Skip to content

Commit

Permalink
Merge pull request #5200 from fluxcd/update-k8s-check
Browse files Browse the repository at this point in the history
Update Kubernetes min supported version to 1.30
  • Loading branch information
stefanprodan authored Feb 20, 2025
2 parents 45da6a8 + 14da7d5 commit 712b037
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
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.29.7-amd64
kubectl_version: v1.29.7
node_image: ghcr.io/fluxcd/kindest/node:v1.30.9-amd64
kubectl_version: v1.30.9
- name: Setup Calico for network policy
run: |
kubectl apply -f https://raw.githubusercontent.com/projectcalico/calico/v3.27.3/manifests/calico.yaml
Expand Down
2 changes: 1 addition & 1 deletion cmd/flux/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ type checkFlags struct {
}

var kubernetesConstraints = []string{
">=1.28.0-0",
">=1.30.0-0",
}

var checkArgs checkFlags
Expand Down
2 changes: 1 addition & 1 deletion cmd/flux/testdata/check/check_pre.golden
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
► checking prerequisites
✔ Kubernetes {{ .serverVersion }} >=1.28.0-0
✔ Kubernetes {{ .serverVersion }} >=1.30.0-0
✔ prerequisites checks passed

0 comments on commit 712b037

Please sign in to comment.