Skip to content

Commit

Permalink
chore: support k8s v1.32.x (#4898)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaohuabing authored Dec 13, 2024
1 parent b9ff29c commit 7ba1717
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
version: [ v1.29.10, v1.30.6, v1.31.4, v1.32.0 ]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: ./tools/github-actions/setup-deps
Expand Down Expand Up @@ -115,14 +115,14 @@ jobs:
fail-fast: false
matrix:
target:
- version: v1.28.13
- version: v1.29.10
ipFamily: ipv4
- version: v1.29.8
- version: v1.30.6
ipFamily: ipv4
- version: v1.30.4
- version: v1.31.4
ipFamily: ipv6 # only run ipv6 test on this version to save time
# TODO: this's IPv4 first, need a way to test IPv6 first.
- version: v1.31.0
- version: v1.32.0
ipFamily: dual # only run dual test on latest version to save time
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
# Benchmark
- name: Run Benchmark tests
env:
KIND_NODE_TAG: v1.28.13
KIND_NODE_TAG: v1.29.10
IMAGE_PULL_POLICY: IfNotPresent
# Args for benchmark test
BENCHMARK_RPS: 10000
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/experimental_conformance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
version: [ v1.29.10, v1.30.6, v1.31.4, v1.32.0 ]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: ./tools/github-actions/setup-deps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/latest_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# Benchmark
- name: Run Benchmark tests
env:
KIND_NODE_TAG: v1.28.13
KIND_NODE_TAG: v1.29.10
IMAGE_PULL_POLICY: IfNotPresent
# Args for benchmark test
BENCHMARK_RPS: 10000
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# Benchmark
- name: Run Benchmark tests
env:
KIND_NODE_TAG: v1.28.13
KIND_NODE_TAG: v1.29.10
IMAGE_PULL_POLICY: IfNotPresent
# Args for benchmark test
BENCHMARK_RPS: 10000
Expand Down
1 change: 1 addition & 0 deletions release-notes/current.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ deprecations: |
# Other notable changes not covered by the above sections.
Other changes: |
[SecurityPolicy] Modify the JWT Provider Issuer validation constraint
Add support for Kubernetes 1.32.x in the test matrix, and remove support for Kubernetes 1.28.x.
2 changes: 1 addition & 1 deletion site/content/en/news/releases/matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Envoy Gateway relies on the Envoy Proxy and the Gateway API, and runs within a K

| Envoy Gateway version | Envoy Proxy version | Rate Limit version | Gateway API version | Kubernetes version |
|-----------------------|-----------------------------|--------------------|---------------------|----------------------------|
| latest | **dev-latest** | **master** | **v1.2.0** | v1.28, v1.29, v1.30, v1.31 |
| latest | **dev-latest** | **master** | **v1.2.0** | v1.29, v1.30, v1.31, v1.32 |
| v1.2 | **distroless-v1.32.1** | **28b1629a** | **v1.2.0** | v1.28, v1.29, v1.30, v1.31 |
| v1.1 | **distroless-v1.31.0** | **91484c59** | **v1.1.0** | v1.27, v1.28, v1.29, v1.30 |
| v1.0 | **distroless-v1.29.2** | **19f2079f** | **v1.0.0** | v1.26, v1.27, v1.28, v1.29 |
Expand Down
2 changes: 1 addition & 1 deletion site/content/zh/latest/install/matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ Envoy Gateway 依赖于 Envoy Proxy 和 Gateway API,并在 Kubernetes 集群
| v0.4.0 | **v1.26-latest** | **542a6047** | **v0.6.2** | v1.25, v1.26, v1.27 |
| v0.3.0 | **v1.25-latest** | **f28024e3** | **v0.6.1** | v1.24, v1.25, v1.26 |
| v0.2.0 | **v1.23-latest** | | **v0.5.1** | v1.24 |
| latest | **dev-latest** | **master** | **v1.0.0** | v1.26, v1.27, v1.28, v1.29 |
| latest | **dev-latest** | **master** | **v1.0.0** | v1.29, v1.30, v1.31, v1.32 |
2 changes: 1 addition & 1 deletion tools/hack/create-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -euo pipefail
# Setup default values
CLUSTER_NAME=${CLUSTER_NAME:-"envoy-gateway"}
METALLB_VERSION=${METALLB_VERSION:-"v0.13.10"}
KIND_NODE_TAG=${KIND_NODE_TAG:-"v1.31.0"}
KIND_NODE_TAG=${KIND_NODE_TAG:-"v1.32.0"}
NUM_WORKERS=${NUM_WORKERS:-""}
IP_FAMILY=${IP_FAMILY:-"ipv4"}

Expand Down

0 comments on commit 7ba1717

Please sign in to comment.