Skip to content

Commit

Permalink
chore: add support for kubernetes version 1.30 (#1115)
Browse files Browse the repository at this point in the history
Signed-off-by: Vishal Choudhary <[email protected]>
  • Loading branch information
vishal-chdhry authored May 23, 2024
1 parent 4fdf325 commit c59aa57
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/add-remove-new-fulcio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
- v1.27.x
- v1.28.x
- v1.29.x
- v1.30.x

leg:
- fulcio-key-rotation
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/fulcio-rekor-kind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
- v1.27.x
- v1.28.x
- v1.29.x
- v1.30.x

leg:
- fulcio rekor ctlog e2e
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-action-tuf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
- v1.27.x
- v1.28.x
- v1.29.x
- v1.30.x
release-version:
- "main" # Test explicitly with latest
go-version:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
- v1.27.x
- v1.28.x
- v1.29.x
- v1.30.x
leg:
- fulcio rekor ctlog e2e
go-version:
Expand Down
4 changes: 2 additions & 2 deletions actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ inputs:
required: true
default: 'cluster.local'
k8s-version:
description: 'kubernetes version to install (v1.25.x, v1.26.x, v1.27.x, v1.28.x, v1.29.x), default: v1.25.x'
description: 'kubernetes version to install (v1.27.x, v1.28.x, v1.29.x, v1.30.x), default: v1.27.x'
required: true
default: 'v1.25.x'
default: 'v1.27.x'
runs:
using: "composite"
steps:
Expand Down
6 changes: 6 additions & 0 deletions hack/setup-kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@ case ${K8S_VERSION} in
KIND_IMAGE_SHA="sha256:51a1434a5397193442f0be2a297b488b6c919ce8a3931be0ce822606ea5ca245"
KIND_IMAGE=kindest/node:${K8S_VERSION}@${KIND_IMAGE_SHA}
;;
v1.30.x)
K8S_VERSION="1.30.0"
KNATIVE_VERSION="1.12.0"
KIND_IMAGE_SHA="sha256:047357ac0cfea04663786a612ba1eaba9702bef25227a794b52890dd8bcd692e"
KIND_IMAGE=kindest/node:${K8S_VERSION}@${KIND_IMAGE_SHA}
;;
*) echo "Unsupported version: ${K8S_VERSION}"; exit 1 ;;
esac

Expand Down

0 comments on commit c59aa57

Please sign in to comment.