You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/v1alpha1/ai_gateway_route.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -266,7 +266,7 @@ type AIGatewayRouteRule struct {
266
266
// It can reference either an AIServiceBackend or an InferencePool resource.
267
267
//
268
268
// +kubebuilder:validation:XValidation:rule="!has(self.group) && !has(self.kind) || (has(self.group) && has(self.kind))", message="group and kind must be specified together"
269
-
// +kubebuilder:validation:XValidation:rule="!has(self.group) || (self.group == 'inference.networking.x-k8s.io' && self.kind == 'InferencePool')", message="only InferencePool from inference.networking.x-k8s.io group is supported"
269
+
// +kubebuilder:validation:XValidation:rule="!has(self.group) || (self.group == 'inference.networking.k8s.io' && self.kind == 'InferencePool')", message="only InferencePool from inference.networking.k8s.io group is supported"
270
270
typeAIGatewayRouteRuleBackendRefstruct {
271
271
// Name is the name of the backend resource.
272
272
// When Group and Kind are not specified, this refers to an AIServiceBackend.
@@ -278,7 +278,7 @@ type AIGatewayRouteRuleBackendRef struct {
278
278
279
279
// Group is the group of the backend resource.
280
280
// When not specified, defaults to aigateway.envoyproxy.io (AIServiceBackend).
281
-
// Currently, only "inference.networking.x-k8s.io" is supported for InferencePool resources.
281
+
// Currently, only "inference.networking.k8s.io" is supported for InferencePool resources.
Copy file name to clipboardExpand all lines: docs/proposals/003-epp-integration-proposal/proposal.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ When request goes to envoyproxy, it goes to the http filter chain, the ext-proc
51
51
The gRPC service info is pre-defined in [InferencePool](https://gateway-api-inference-extension.sigs.k8s.io/api-types/inferencepool/) extensionRef, giving an example below:
0 commit comments