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
{{- fail ".Values.inferenceExtension.endpointsServer.endpointSelector is required when creating an agentgateway model Service" -}}
212
-
{{- end -}}
213
-
{{- range$raw:= splitList ","$selector }}
214
-
{{- $part:= trim $raw -}}
215
-
{{- $kv:= splitList "="$part -}}
216
-
{{- ifne (len$kv) 2 -}}
217
-
{{- fail (printf".Values.inferenceExtension.endpointsServer.endpointSelector must use comma-separated key=value labels when creating an agentgateway model Service, got %q"$selector) -}}
218
-
{{- end -}}
219
-
{{- $key:= trim (index$kv 0) -}}
220
-
{{- $value:= trim (index$kv 1) -}}
221
-
{{- ifor (empty $key) (empty $value) -}}
222
-
{{- fail (printf".Values.inferenceExtension.endpointsServer.endpointSelector must use non-empty key=value labels when creating an agentgateway model Service, got %q"$selector) -}}
{{- fail ".Values.inferenceExtension.endpointsServer.createInferencePool=false is required when proxyType=agentgateway; standalone agentgateway currently supports only service-backed routing" -}}
24
+
{{- fail ".Values.inferenceExtension.endpointsServer.createInferencePool=false is required when proxyType=agentgateway; standalone agentgateway uses EPP endpoint discovery with a logical service backend" -}}
{{- fail ".Values.inferenceExtension.sidecar.agentgateway.service.port has been replaced by .Values.inferenceExtension.sidecar.agentgateway.service.ports" -}}
26
+
{{- if hasKey $sidecar"agentgateway" -}}
27
+
{{- fail ".Values.inferenceExtension.sidecar.agentgateway is no longer supported; standalone agentgateway derives its logical backend from endpointsServer settings" -}}
32
28
{{- end -}}
33
-
{{- if empty $serviceName -}}
34
-
{{- fail ".Values.inferenceExtension.sidecar.agentgateway.service.name is required when proxyType=agentgateway" -}}
35
-
{{- end -}}
36
-
{{- $targetPorts:= include "gateway-api-inference-extension.standaloneEndpointTargetPorts". -}}
37
-
{{- $servicePorts:= include "gateway-api-inference-extension.agentgateway.modelServicePorts". -}}
38
-
{{- ifne$targetPorts$servicePorts -}}
39
-
{{- fail (printf".Values.inferenceExtension.sidecar.agentgateway.service.ports must match .Values.inferenceExtension.endpointsServer.targetPorts when proxyType=agentgateway, got service ports %q and target ports %q"$servicePorts$targetPorts) -}}
40
-
{{- end -}}
41
-
{{- $listenerPort:= include "gateway-api-inference-extension.standaloneProxyListenerPort". -}}
29
+
{{- $_:= include "gateway-api-inference-extension.standaloneEndpointTargetPorts". -}}
30
+
{{- $_:= include "gateway-api-inference-extension.standaloneProxyListenerPort". -}}
{{- fail ".Values.inferenceExtension.flags.secure-serving must be false when proxyType=agentgateway; standalone agentgateway uses plaintext gRPC to EPP over localhost" -}}
45
34
{{- end -}}
46
-
{{- if$serviceCreate -}}
47
-
{{- $selectorLabels:= include "gateway-api-inference-extension.agentgateway.modelServiceSelectorLabels". -}}
0 commit comments