Skip to content

Commit

Permalink
Drop k8s v1.28 from kind testing and update cluster version to 1.30 i…
Browse files Browse the repository at this point in the history
…n e2e (#15655)

* Drop k8s v1.28 from kind testing and update cluster version to 1.29 in e2e

* remove 1.29

* add 1.29 back

* revert chainguard-dev/actions/setup-kind to main

* set min to 1.30
  • Loading branch information
skonto authored Dec 28, 2024
1 parent daae9fd commit 750f9a2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/kind-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ jobs:
fail-fast: false # Keep running if one leg fails.
matrix:
k8s-version:
- v1.28.x
- v1.29.x
- v1.30.x
- v1.31.x

ingress:
- kourier
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
path: ~/artifacts

- name: setup kind
uses: chainguard-dev/actions/setup-kind@1f79ee3c1d554f67a5344933e2cadfa4b58d300d
uses: chainguard-dev/actions/setup-kind@main
with:
k8s-version: ${{ matrix.k8s-version }}
kind-worker-count: 4
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.28
initialize "$@" --num-nodes=4 --enable-ha --cluster-version=1.30

# 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.28 "$@"
initialize --num-nodes=4 --enable-ha --cluster-version=1.30 "$@"

# 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.28 \
PVC=0 QUOTA=0 initialize "$@" --num-nodes=4 --cluster-version=1.30 \
--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.28 "$@"
initialize --num-nodes=10 --cluster-version=1.30 "$@"

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

0 comments on commit 750f9a2

Please sign in to comment.