Skip to content

Commit f7a881c

Browse files
Add vllm user to avoid get user issue during torch compilation (#111)
* Add vllm user to avoid get user issue during torch compilation Signed-off-by: sandeshk <sandesh.kumar.s@intel.com> * Update xeon-values.yaml * Update vLLM cpu image Signed-off-by: sandeshk <sandesh.kumar.s@intel.com> --------- Signed-off-by: sandeshk <sandesh.kumar.s@intel.com>
1 parent 1d355c0 commit f7a881c

5 files changed

Lines changed: 13 additions & 5 deletions

File tree

.github/workflows/code-scans.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
continue-on-error: true
5353
with:
5454
scan-type: 'image'
55-
image-ref: 'public.ecr.aws/q9t5s3a7/vllm-cpu-release-repo:v0.21.0'
55+
image-ref: 'vllm/vllm-openai-cpu:v0.21.0'
5656
severity: 'HIGH,CRITICAL'
5757
exit-code: 0
5858
format: 'table'

core/helm-charts/vllm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ accelDevice: ""
2121
port: 2080
2222
shmSize: 1Gi
2323
image:
24-
repository: public.ecr.aws/q9t5s3a7/vllm-cpu-release-repo
24+
repository: vllm/vllm-openai-cpu
2525
# Uncomment the following line to set desired image pull policy if needed, as one of Always, IfNotPresent, Never.
2626
# pullPolicy: ""
2727
# Overrides the image tag whose default is the chart appVersion.

core/helm-charts/vllm/xeon-values.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ max_model_len: 8192
2626

2727
# vLLM CPU image configuration
2828
image:
29-
repository: public.ecr.aws/q9t5s3a7/vllm-cpu-release-repo
29+
repository: vllm/vllm-openai-cpu
3030
tag: "v0.21.0"
3131
pullPolicy: IfNotPresent
3232

@@ -58,6 +58,7 @@ modelConfigs:
5858
VLLM_CPU_NUM_OF_RESERVED_CPU: "0"
5959
HF_HUB_DISABLE_XET: "1"
6060
VLLM_CPU_SGL_KERNEL: "1"
61+
USER: "vllm"
6162
extraCmdArgs:
6263
[
6364
"--block-size",
@@ -89,6 +90,7 @@ modelConfigs:
8990
VLLM_CPU_NUM_OF_RESERVED_CPU: "0"
9091
VLLM_CPU_SGL_KERNEL: "1"
9192
HF_HUB_DISABLE_XET: "1"
93+
USER: "vllm"
9294
extraCmdArgs:
9395
[
9496
"--block-size",
@@ -120,6 +122,7 @@ modelConfigs:
120122
VLLM_CPU_NUM_OF_RESERVED_CPU: "0"
121123
VLLM_CPU_SGL_KERNEL: "1"
122124
HF_HUB_DISABLE_XET: "1"
125+
USER: "vllm"
123126
extraCmdArgs:
124127
[
125128
"--block-size",
@@ -149,6 +152,7 @@ modelConfigs:
149152
VLLM_CPU_NUM_OF_RESERVED_CPU: "0"
150153
VLLM_CPU_SGL_KERNEL: "1"
151154
HF_HUB_DISABLE_XET: "1"
155+
USER: "vllm"
152156
extraCmdArgs:
153157
[
154158
"--block-size",
@@ -178,6 +182,7 @@ modelConfigs:
178182
VLLM_CPU_NUM_OF_RESERVED_CPU: "0"
179183
VLLM_CPU_SGL_KERNEL: "1"
180184
HF_HUB_DISABLE_XET: "1"
185+
USER: "vllm"
181186
extraCmdArgs:
182187
[
183188
"--block-size",
@@ -209,6 +214,7 @@ modelConfigs:
209214
VLLM_CPU_NUM_OF_RESERVED_CPU: "0"
210215
VLLM_CPU_SGL_KERNEL: "1"
211216
HF_HUB_DISABLE_XET: "1"
217+
USER: "vllm"
212218
extraCmdArgs:
213219
[
214220
"--block-size",
@@ -242,6 +248,7 @@ modelConfigs:
242248
VLLM_CPU_SGL_KERNEL: "1"
243249
HF_HUB_DISABLE_XET: "1"
244250
LOGNAME: "vllm"
251+
USER: "vllm"
245252
extraCmdArgs:
246253
[
247254
"--block-size",
@@ -273,6 +280,7 @@ defaultModelConfigs:
273280
VLLM_CPU_NUM_OF_RESERVED_CPU: "0"
274281
VLLM_CPU_SGL_KERNEL: "1"
275282
HF_HUB_DISABLE_XET: "1"
283+
USER: "vllm"
276284
extraCmdArgs:
277285
[
278286
"--block-size",

core/scripts/vllm-quickstart/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ The `models.json` file contains all configuration:
116116
```json
117117
{
118118
"docker": {
119-
"image": "public.ecr.aws/q9t5s3a7/vllm-cpu-release-repo:v0.11.2",
119+
"image": "vllm/vllm-openai-cpu:v0.21.0",
120120
"port": "8000:8000",
121121
"environment": { ... },
122122
"volumes": [ ... ]

core/scripts/vllm-quickstart/models.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"docker": {
3-
"image": "public.ecr.aws/q9t5s3a7/vllm-cpu-release-repo:v0.11.2",
3+
"image": "vllm/vllm-openai-cpu:v0.21.0",
44
"port": "8000:8000",
55
"environment": {
66
"VLLM_CPU_SGL_KERNEL": "1",

0 commit comments

Comments
 (0)