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
@@ -290,7 +290,7 @@ type AIGatewayRouteRule struct {
290
290
// It can reference either an AIServiceBackend or an InferencePool resource.
291
291
//
292
292
// +kubebuilder:validation:XValidation:rule="!has(self.group) && !has(self.kind) || (has(self.group) && has(self.kind))", message="group and kind must be specified together"
293
-
// +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"
293
+
// +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"
294
294
typeAIGatewayRouteRuleBackendRefstruct {
295
295
// Name is the name of the backend resource.
296
296
// When Group and Kind are not specified, this refers to an AIServiceBackend.
@@ -302,7 +302,7 @@ type AIGatewayRouteRuleBackendRef struct {
302
302
303
303
// Group is the group of the backend resource.
304
304
// When not specified, defaults to aigateway.envoyproxy.io (AIServiceBackend).
305
-
// Currently, only "inference.networking.x-k8s.io" is supported for InferencePool resources.
305
+
// 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
@@ -50,7 +50,7 @@ When request goes to envoyproxy, it goes to the http filter chain, the ext-proc
50
50
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