generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 135
gke-gateway v0.5.0 conformance test report 9/9 #1005
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
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
bb4f48e
generate first test report.
zetxqx 50e4d55
new versino.
zetxqx 8283e4a
add real report.
zetxqx 32a8a7c
refine report parameters.
zetxqx 8b9c1a4
refine report parameters.
zetxqx 344412b
update report format.
zetxqx b43f0b6
update report format.
zetxqx 3f4e296
update report.
zetxqx e9bf416
update report.
zetxqx f36b572
remove unneeded change.:
zetxqx a52348b
remove unneeded change.:
zetxqx 106ec14
remove unneeded change.
zetxqx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# GKE (Google Kubernetes Engine) Gateway | ||
|
||
## Table of Contents | ||
|
||
| Extension Version Tested | Profile Tested | Implementation Version | Mode | Report | | ||
|--------------------------|----------------|------------------------|---------|----------------------------------------------------------------------------| | ||
| v0.5.0 | Gateway | 1.32.4-gke.1415000 | gke-l7-regional-external-managed | [v1.32.4 Gateway report](./standard-v1.32.4-rxlb-gateway-report.yaml) | | ||
| ... | ... | ... | ... | ... | | ||
|
||
## Reproduce | ||
|
||
GKE Gateway conformance report can be reproduced by the following steps. | ||
|
||
1. Create a GKE cluster with Gateway API enabled. | ||
|
||
``` | ||
gcloud container clusters create "${cluster_name}" --gateway-api=standard --location="${location}" | ||
``` | ||
1. Deploy GKE gateway following [guide](https://cloud.google.com/kubernetes-engine/docs/how-to/deploying-gateways#configure_a_proxy-only_subnet). | ||
1. Install the InferencePool and InferenceModel Custom Resource Definition (CRDs) in your GKE cluster, run the following command: | ||
``` | ||
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api-inference-extension/releases/download/v0.5.0/manifests.yaml | ||
``` | ||
1. Run the following command from within the [Gateway API inference extension repo](https://github.com/kubernetes-sigs/gateway-api-inference-extension). | ||
``` | ||
go test -timeout 30m ./conformance -v -args \ | ||
--gateway-class=gke-l7-regional-external-managed \ | ||
--conformance-profiles=Gateway \ | ||
--organization=GKE \ | ||
--project=gke-gateway \ | ||
--url=https://cloud.google.com/kubernetes-engine/docs/concepts/gateway-api \ | ||
--version=1.32.4-gke.1415000 \ | ||
[email protected] \ | ||
--report-output="/path/to/report" | ||
``` | ||
or run a single conformance test case. | ||
``` | ||
go test ./conformance -v -args \ | ||
-gateway-class=gke-l7-regional-external-managed \ | ||
-run-test=InferencePoolAccepted | ||
``` |
23 changes: 23 additions & 0 deletions
23
conformance/reports/v0.5.0/gateway/gke-gateway/standard-v1.32.4-rxlb-gateway-report.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
GatewayAPIInferenceExtensionVersion: v0.5.0 | ||
apiVersion: gateway.networking.k8s.io/v1 | ||
date: "2025-07-21T22:52:10Z" | ||
gatewayAPIChannel: standard | ||
gatewayAPIVersion: v1.2.1 | ||
implementation: | ||
contact: | ||
- [email protected] | ||
organization: GKE | ||
project: gke-gateway | ||
url: https://cloud.google.com/kubernetes-engine/docs/concepts/gateway-api | ||
version: 1.32.4-gke.1415000 | ||
kind: ConformanceReport | ||
mode: default | ||
profiles: | ||
- core: | ||
result: success | ||
statistics: | ||
Failed: 0 | ||
Passed: 9 | ||
Skipped: 0 | ||
name: Gateway | ||
summary: Core tests succeeded. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: variables
${cluster_name}
and${location}
were not defined or referred anywhere before this line, so it could be a bit unclear for a newcomer.do you have them defined somewhere out of this PR?
definitely not a blocker and we can make progress and come back to this if/when needed.