Skip to content

Commit

Permalink
Run Prow tests on K8s 1.28 (#7714)
Browse files Browse the repository at this point in the history
  • Loading branch information
creydr committed Feb 21, 2024
1 parent 8393b3e commit fcadaaa
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions test/e2e-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ if [ "$(uname)" == "Darwin" ]; then
grep=ggrep
fi

# GKE cluster version
readonly K8S_CLUSTER_VERSION=1.28

# Eventing main config.
readonly EVENTING_CONFIG="config/"

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

# Script entry point.

initialize "$@"
initialize --cluster-version=${K8S_CLUSTER_VERSION} "$@"

echo "Running Conformance tests for: Multi Tenant Channel Based Broker (v1), Channel (v1), InMemoryChannel (v1) , ApiServerSource (v1), ContainerSource (v1) and PingSource (v1beta2)"
go_test_e2e -timeout=30m -parallel=12 ./test/conformance \
Expand Down
2 changes: 1 addition & 1 deletion test/e2e-rekt-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ source "$(dirname "$0")/e2e-common.sh"

# Script entry point.

initialize "$@" --num-nodes=4
initialize --cluster-version=${K8S_CLUSTER_VERSION} --num-nodes=4 "$@"

export SKIP_UPLOAD_TEST_IMAGES="true"

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

# Script entry point.

initialize "$@"
initialize --cluster-version=${K8S_CLUSTER_VERSION} "$@"

echo "Running E2E tests for: Multi Tenant Channel Based Broker, Channel (v1), InMemoryChannel (v1) , ApiServerSource (v1), ContainerSource (v1) and PingSource (v1beta2)"
go_test_e2e -timeout=1h -parallel=20 ./test/e2e \
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 @@ -39,7 +39,7 @@ function uninstall_test_resources {
true
}

initialize "$@"
initialize --cluster-version=${K8S_CLUSTER_VERSION} "$@"

TIMEOUT=${TIMEOUT:-60m}

Expand Down

0 comments on commit fcadaaa

Please sign in to comment.