Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Upgrade kind (0.23.0), kubectl (1.30.4), knative (1.15.0) #22

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ jobs:
strategy:
matrix:
version:
- v0.17.0
- v0.16.0
- v0.23.0
- v0.22.0
os: [ubuntu-latest, macos-13]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -80,8 +80,8 @@ jobs:
strategy:
matrix:
version:
- v0.17.0
- v0.16.0
- v0.23.0
- v0.22.0
os: [ubuntu-latest, macos-13]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
strategy:
matrix:
version:
- v0.17.0
- v0.23.0
os: [ubuntu-latest, macos-13]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
strategy:
matrix:
version:
- v0.17.0
- v0.23.0
os: [ubuntu-latest, macos-13]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
strategy:
matrix:
knative_version:
- v1.9.0
- v1.15.0
os: [ubuntu-latest, macos-13]
runs-on: ${{ matrix.os }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ For more information, reference the GitHub Help Documentation for [Creating a wo

For more information on inputs, see the [API Documentation](https://developer.github.com/v3/repos/releases/#input)

- `version`: The KinD version to use (default: `v0.17.0`)
- `version`: The KinD version to use (default: `v0.23.0`)
- `config`: The path to the KinD config file
- `node_image`: The Docker image for the cluster nodes
- `cluster_name`: The name of the cluster to create (default: `kind`)
- `wait`: The duration to wait for the control plane to become ready (default: `60s`)
- `log_level`: The log level for KinD
- `registry`: Configures an insecure registry on `kind-registry:5000` to be used with KinD (default: `true`)
- `registry_delete`: Set to true to enable delete operations on the Image Registry (default is `false`)
- `kubectl_version`: The kubectl version to use (default: `v1.26.1`)
- `kubectl_version`: The kubectl version to use (default: `v1.30.4`)
- `knative_serving`: The version of Knative Serving to install on the Kind cluster (not installed by default - example: `v1.0.0`)
- `knative_kourier`: The version of Knative Net Kourier to install on the Kind cluster (not installed by default - example: `v1.0.0`)
- `knative_eventing`: The version of Knative Eventing to install on the Kind cluster (not installed by default - example: `v1.0.0`)
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ branding:
icon: cloud
inputs:
version:
description: "The KinD version to use (default: v0.17.0)"
description: "The KinD version to use (default: v0.23.0)"
config:
description: "The path to the KinD config file"
node_image:
Expand All @@ -22,7 +22,7 @@ inputs:
registry_delete:
description: "Enables delete operations on the Image Registry (default is false)"
kubectl_version:
description: "The version of kubectl to use (default: v1.26.1)"
description: "The version of kubectl to use (default: v1.30.4)"
knative_serving:
description: "The version of Knative Serving to install on the Kind cluster (not installed by default - example: v1.0.0)"
knative_kourier:
Expand Down
4 changes: 2 additions & 2 deletions kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ set -o errexit
set -o nounset
set -o pipefail

DEFAULT_KIND_VERSION=v0.17.0
DEFAULT_KIND_VERSION=v0.23.0
DEFAULT_CLUSTER_NAME=kind
DEFAULT_KUBECTL_VERSION=v1.26.1
DEFAULT_KUBECTL_VERSION=v1.30.4

show_help() {
cat << EOF
Expand Down
Loading