test: add Gateway API v1.4 conformance CI (#4135)

Signed-off-by: EndlessSeeker <1766508902@qq.com>
This commit is contained in:
EndlessSeeker
2026-07-14 19:49:58 +08:00
committed by GitHub
parent 152f14b171
commit afb72b81cb
22 changed files with 454 additions and 59 deletions

View File

@@ -20,6 +20,7 @@ set -euo pipefail
CLUSTER_NAME=${CLUSTER_NAME:-"higress"}
METALLB_VERSION=${METALLB_VERSION:-"v0.13.7"}
KIND_NODE_TAG=${KIND_NODE_TAG:-"v1.25.3"}
KIND=${KIND:-"tools/bin/kind"}
PROJECT_DIR=$(pwd)
echo ${KIND_NODE_TAG}
@@ -67,7 +68,7 @@ EOF
## Create kind cluster.
if [[ -z "${KIND_NODE_TAG}" ]]; then
tools/bin/kind create cluster --name "${CLUSTER_NAME}" --config=tools/hack/cluster.conf
"${KIND}" create cluster --name "${CLUSTER_NAME}" --config=tools/hack/cluster.conf
else
tools/bin/kind create cluster --image "kindest/node:${KIND_NODE_TAG}" --name "${CLUSTER_NAME}" --config=tools/hack/cluster.conf
"${KIND}" create cluster --image "kindest/node:${KIND_NODE_TAG}" --name "${CLUSTER_NAME}" --config=tools/hack/cluster.conf
fi