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: README.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -171,8 +171,16 @@ Usage of ./bin/llm-d-routing-sidecar:
171
171
The path to the certificate for secure proxy. The certificate and private key files are assumed to be named tls.crt and tls.key, respectively. If not set, and secureProxy is enabled, then a self-signed certificate is used (for testing).
172
172
-connector string
173
173
the P/D connector being used. Either nixl, nixlv2 or lmcache (default "nixl")
174
+
-decoder-tls-insecure-skip-verify
175
+
configures the proxy to skip TLS verification for requests to decoder
174
176
-decoder-use-tls
175
177
whether to use TLS when sending requests to the decoder
178
+
-enable-ssrf-protection
179
+
enable SSRF protection using InferencePool allowlisting
180
+
-inference-pool-name string
181
+
the specific InferencePool name to watch (defaults to INFERENCE_POOL_NAME env var)
182
+
-inference-pool-namespace string
183
+
the Kubernetes namespace to watch for InferencePool resources (defaults to INFERENCE_POOL_NAMESPACE env var)
176
184
-log_backtrace_at value
177
185
when logging hits line file:N, emit a stack trace
178
186
-log_dir string
@@ -187,6 +195,8 @@ Usage of ./bin/llm-d-routing-sidecar:
187
195
If true, only write logs to their native severity level (vs also writing to each lower severity level; no effect when -logtostderr=true)
188
196
-port string
189
197
the port the sidecar is listening on (default "8000")
198
+
-prefiller-tls-insecure-skip-verify
199
+
configures the proxy to skip TLS verification for requests to prefiller
190
200
-prefiller-use-tls
191
201
whether to use TLS when sending requests to prefillers
Copy file name to clipboardExpand all lines: cmd/llm-d-routing-sidecar/main.go
+11-4Lines changed: 11 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,8 @@ func main() {
33
33
connector:=flag.String("connector", "nixl", "the P/D connector being used. Either nixl, nixlv2 or lmcache")
34
34
prefillerUseTLS:=flag.Bool("prefiller-use-tls", false, "whether to use TLS when sending requests to prefillers")
35
35
decoderUseTLS:=flag.Bool("decoder-use-tls", false, "whether to use TLS when sending requests to the decoder")
36
+
prefillerInsecureSkipVerify:=flag.Bool("prefiller-tls-insecure-skip-verify", false, "configures the proxy to skip TLS verification for requests to prefiller")
37
+
decoderInsecureSkipVerify:=flag.Bool("decoder-tls-insecure-skip-verify", false, "configures the proxy to skip TLS verification for requests to decoder")
36
38
secureProxy:=flag.Bool("secure-proxy", true, "Enables secure proxy. Defaults to true.")
37
39
certPath:=flag.String(
38
40
"cert-path", "", "The path to the certificate for secure proxy. The certificate and private key files "+
0 commit comments