Skip to content

Commit

Permalink
chore: add support for kubernetes version 1.29 (#917)
Browse files Browse the repository at this point in the history
Signed-off-by: Vishal Choudhary <[email protected]>
  • Loading branch information
vishal-chdhry authored Dec 19, 2023
1 parent ebf850e commit bea34b6
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 1 deletion.
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 @@ -30,6 +30,7 @@ jobs:
- v1.26.x
- v1.27.x
- v1.28.x
- v1.29.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 @@ -30,6 +30,7 @@ jobs:
- v1.26.x
- v1.27.x
- v1.28.x
- v1.29.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 @@ -27,6 +27,7 @@ jobs:
- v1.26.x
- v1.27.x
- v1.28.x
- v1.29.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 @@ -27,6 +27,7 @@ jobs:
- v1.26.x
- v1.27.x
- v1.28.x
- v1.29.x
leg:
- fulcio rekor ctlog e2e
go-version:
Expand Down
2 changes: 1 addition & 1 deletion actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ 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), default: v1.25.x'
description: 'kubernetes version to install (v1.25.x, v1.26.x, v1.27.x, v1.28.x, v1.29.x), default: v1.25.x'
required: true
default: 'v1.25.x'
runs:
Expand Down
6 changes: 6 additions & 0 deletions hack/setup-kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,12 @@ case ${K8S_VERSION} in
KIND_IMAGE_SHA="sha256:b7a4cad12c197af3ba43202d3efe03246b3f0793f162afb40a33c923952d5b31"
KIND_IMAGE=kindest/node:${K8S_VERSION}@${KIND_IMAGE_SHA}
;;
v1.29.x)
K8S_VERSION="1.29.0"
KNATIVE_VERSION="1.12.0"
KIND_IMAGE_SHA="sha256:eaa1450915475849a73a9227b8f201df25e55e268e5d619312131292e324d570"
KIND_IMAGE=kindest/node:${K8S_VERSION}@${KIND_IMAGE_SHA}
;;
*) echo "Unsupported version: ${K8S_VERSION}"; exit 1 ;;
esac

Expand Down

0 comments on commit bea34b6

Please sign in to comment.