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

bump min k8s version to v1.31 #15774

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
4 changes: 2 additions & 2 deletions .github/workflows/kind-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
REGISTRY_NAME: registry.local
REGISTRY_PORT: 5000
KO_DOCKER_REPO: registry.local:5000/knative
GOTESTSUM_VERSION: 1.11.0
GOTESTSUM_VERSION: 1.12.0
KO_FLAGS: --platform=linux/amd64
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -82,8 +82,8 @@ jobs:
fail-fast: false # Keep running if one leg fails.
matrix:
k8s-version:
- v1.30.x
- v1.31.x
- v1.32.x

ingress:
- kourier
Expand Down
2 changes: 1 addition & 1 deletion test/e2e-external-domain-tls-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ function delete_dns_record() {
}

# Script entry point.
initialize "$@" --num-nodes=4 --enable-ha --cluster-version=1.30
initialize "$@" --num-nodes=4 --enable-ha --cluster-version=1.31

# Run the tests
header "Running tests"
Expand Down
2 changes: 1 addition & 1 deletion test/e2e-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
source $(dirname "$0")/e2e-common.sh

# Script entry point.
initialize --num-nodes=4 --enable-ha --cluster-version=1.30 "$@"
initialize --num-nodes=4 --enable-ha --cluster-version=1.31 "$@"

# Run the tests
header "Running tests"
Expand Down
2 changes: 1 addition & 1 deletion test/e2e-upgrade-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function stage_test_resources() {
# Skip installing istio as an add-on.
# Skip installing a pvc as it is not used in upgrade tests
# Skip installing a resource quota as it is not used in upgrade tests
PVC=0 QUOTA=0 initialize "$@" --num-nodes=4 --cluster-version=1.30 \
PVC=0 QUOTA=0 initialize "$@" --num-nodes=4 --cluster-version=1.31 \
--install-latest-release

# TODO(#2656): Reduce the timeout after we get this test to consistently passing.
Expand Down
2 changes: 1 addition & 1 deletion test/performance/performance-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ declare ARTIFACTS

ns="default"

initialize --num-nodes=10 --cluster-version=1.30 "$@"
initialize --num-nodes=10 --cluster-version=1.31 "$@"

function run_job() {
local name=$1
Expand Down
Loading