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
2 changes: 1 addition & 1 deletion .github/workflows/code-scans.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
continue-on-error: true
with:
scan-type: 'image'
image-ref: 'vllm/vllm-openai-cpu:v0.21.0'
image-ref: 'vllm/vllm-openai-cpu:v0.24.0'
severity: 'HIGH,CRITICAL'
exit-code: 0
format: 'table'
Expand Down
2 changes: 1 addition & 1 deletion core/helm-charts/vllm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ image:
# Uncomment the following line to set desired image pull policy if needed, as one of Always, IfNotPresent, Never.
# pullPolicy: ""
# Overrides the image tag whose default is the chart appVersion.
tag: "v0.21.0"
tag: "v0.24.0"

imagePullSecrets: []
nameOverride: ""
Expand Down
10 changes: 9 additions & 1 deletion core/helm-charts/vllm/xeon-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ max_model_len: 8192
# vLLM CPU image configuration
image:
repository: vllm/vllm-openai-cpu
tag: "v0.21.0"
tag: "v0.24.0"
pullPolicy: IfNotPresent

# Node affinity for Xeon inference nodes
Expand Down Expand Up @@ -59,6 +59,7 @@ modelConfigs:
HF_HUB_DISABLE_XET: "1"
VLLM_CPU_SGL_KERNEL: "1"
USER: "vllm"
TRITON_CACHE_DIR: "/tmp/.triton"
extraCmdArgs:
[
"--block-size",
Expand Down Expand Up @@ -91,6 +92,7 @@ modelConfigs:
VLLM_CPU_SGL_KERNEL: "1"
HF_HUB_DISABLE_XET: "1"
USER: "vllm"
TRITON_CACHE_DIR: "/tmp/.triton"
extraCmdArgs:
[
"--block-size",
Expand Down Expand Up @@ -123,6 +125,7 @@ modelConfigs:
VLLM_CPU_SGL_KERNEL: "1"
HF_HUB_DISABLE_XET: "1"
USER: "vllm"
TRITON_CACHE_DIR: "/tmp/.triton"
extraCmdArgs:
[
"--block-size",
Expand Down Expand Up @@ -153,6 +156,7 @@ modelConfigs:
VLLM_CPU_SGL_KERNEL: "1"
HF_HUB_DISABLE_XET: "1"
USER: "vllm"
TRITON_CACHE_DIR: "/tmp/.triton"
extraCmdArgs:
[
"--block-size",
Expand Down Expand Up @@ -183,6 +187,7 @@ modelConfigs:
VLLM_CPU_SGL_KERNEL: "1"
HF_HUB_DISABLE_XET: "1"
USER: "vllm"
TRITON_CACHE_DIR: "/tmp/.triton"
extraCmdArgs:
[
"--block-size",
Expand Down Expand Up @@ -215,6 +220,7 @@ modelConfigs:
VLLM_CPU_SGL_KERNEL: "1"
HF_HUB_DISABLE_XET: "1"
USER: "vllm"
TRITON_CACHE_DIR: "/tmp/.triton"
extraCmdArgs:
[
"--block-size",
Expand Down Expand Up @@ -249,6 +255,7 @@ modelConfigs:
HF_HUB_DISABLE_XET: "1"
LOGNAME: "vllm"
USER: "vllm"
TRITON_CACHE_DIR: "/tmp/.triton"
extraCmdArgs:
[
"--block-size",
Expand Down Expand Up @@ -281,6 +288,7 @@ defaultModelConfigs:
VLLM_CPU_SGL_KERNEL: "1"
HF_HUB_DISABLE_XET: "1"
USER: "vllm"
TRITON_CACHE_DIR: "/tmp/.triton"
extraCmdArgs:
[
"--block-size",
Expand Down
2 changes: 1 addition & 1 deletion core/roles/inference-tools/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
ansible.builtin.pip:
name: kubernetes
state: present
extra_args: "--break-system-packages"
extra_args: "--break-system-packages --ignore-installed"
become: true
when: pip_install_result is failed
tags: always
Expand Down
2 changes: 1 addition & 1 deletion core/scripts/vllm-quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ The `models.json` file contains all configuration:
```json
{
"docker": {
"image": "vllm/vllm-openai-cpu:v0.21.0",
"image": "vllm/vllm-openai-cpu:v0.24.0",
"port": "8000:8000",
"environment": { ... },
"volumes": [ ... ]
Expand Down
2 changes: 1 addition & 1 deletion core/scripts/vllm-quickstart/models.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"docker": {
"image": "vllm/vllm-openai-cpu:v0.21.0",
"image": "vllm/vllm-openai-cpu:v0.24.0",
"port": "8000:8000",
"environment": {
"VLLM_CPU_SGL_KERNEL": "1",
Expand Down