Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion deploy/components/vllm-decode/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ spec:
imagePullPolicy: IfNotPresent
args:
- "--port=8000"
- "--vllm-port=8200"
- "--secure-proxy=false"
- "--data-parallel-size=${VLLM_DATA_PARALLEL_SIZE}"
ports:
Expand Down
1 change: 0 additions & 1 deletion deploy/environments/dev/e-p-d/patch-decode.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ spec:
- name: routing-sidecar
args:
- "--port=8000"
- "--vllm-port=8200"
- "--kv-connector=${KV_CONNECTOR_TYPE}"
- "--ec-connector=${EC_CONNECTOR_TYPE}"
- "--secure-proxy=false"
Expand Down
1 change: 0 additions & 1 deletion deploy/environments/dev/e-pd/patch-decode.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ spec:
- name: routing-sidecar
args:
- "--port=8000"
- "--vllm-port=8200"
- "--ec-connector=${EC_CONNECTOR_TYPE}"
- "--secure-proxy=false"
- "--data-parallel-size=${VLLM_DATA_PARALLEL_SIZE}"
1 change: 0 additions & 1 deletion deploy/environments/dev/p-d/patch-decode.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ spec:
- name: routing-sidecar
args:
- "--port=8000"
- "--vllm-port=8200"
- "--kv-connector=${CONNECTOR_TYPE}"
- "--mooncake-bootstrap-port=8000"
- "--secure-proxy=false"
Expand Down
2 changes: 1 addition & 1 deletion pkg/sidecar/proxy/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const (

// Defaults
defaultPort = "8000"
defaultVLLMPort = "8001"
defaultVLLMPort = "8200"
defaultDataParallelSize = 1
defaultMooncakeBootstrapPort = 8998

Expand Down
6 changes: 3 additions & 3 deletions pkg/sidecar/proxy/options_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func createConfigWithValidYAML(t *testing.T) string {
t.Helper()
return writeTempYAML(t, "valid.yaml", fmt.Sprintf(`
port: 8100
vllm-port: 8200
vllm-port: 8001
data-parallel-size: 5
kv-connector: %q
connector: %q
Expand Down Expand Up @@ -74,7 +74,7 @@ func createConfigWithUnknownKeys(t *testing.T) string {
t.Helper()
return writeTempYAML(t, "valid.yaml", `
port: 8100
vllm-port: 8200
vllm-port: 8001
unknown-key: 1001
`)
}
Expand Down Expand Up @@ -183,7 +183,7 @@ func TestSidecarConfiguration(t *testing.T) {
},
expected: func(o *Options) {
o.Port = "8100"
o.vllmPort = "8200"
o.vllmPort = "8001"
o.DataParallelSize = 5
o.MaxIdleConnsPerHost = 300
o.MooncakeBootstrapPort = 9000
Expand Down
1 change: 0 additions & 1 deletion test/sidecar/config/nixl/qwen-decoder-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ spec:
runAsNonRoot: true
args:
- "-port=8000"
- "-vllm-port=8200"
- "-connector=nixlv2"
- "-v=6"
ports:
Expand Down
Loading