Skip to content

Commit 6d87d2a

Browse files
author
sd109
committed
Merge branch 'main' into fix/grafana-dashboard-improvements
2 parents d0e98ad + 294ac78 commit 6d87d2a

File tree

3 files changed

+7
-26
lines changed

3 files changed

+7
-26
lines changed

chart/templates/api/config-map-grafana-dashboard.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -788,22 +788,4 @@
788788
"title": "GPU Power Draw",
789789
"type": "timeseries"
790790
}
791-
],
792-
"refresh": "",
793-
"schemaVersion": 39,
794-
"tags": [],
795-
"templating": {
796-
"list": []
797-
},
798-
"time": {
799-
"from": "now-30m",
800-
"to": "now"
801-
},
802-
"timepicker": {},
803-
"timezone": "",
804-
"title": "LLM Dashboard",
805-
"uid": "c4114a95-8172-4a8b-99c8-963ba7d31385",
806-
"version": 1,
807-
"weekStart": ""
808-
}
809791
{{- end -}}

chart/templates/api/deployment.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,14 @@ spec:
3535
{{- if .Values.huggingface.secretName }}
3636
envFrom:
3737
- secretRef:
38-
name: huggingface-token
39-
{{- else if .Values.huggingface.token }}
38+
name: {{ .Values.huggingface.secretName }}
39+
{{- end }}
4040
env:
4141
- name: DO_NOT_TRACK
42-
value: 1
42+
value: "1"
43+
{{- if .Values.huggingface.token }}
4344
- name: HUGGING_FACE_HUB_TOKEN
4445
value: {{ quote .Values.huggingface.token }}
45-
{{- else if contains "Llama" .Values.huggingface.model -}}
46-
{{- fail "Either secretName or token value must be set for Llama and other gated models" }}
4746
{{- end }}
4847
readinessProbe:
4948
httpGet:
@@ -60,4 +59,4 @@ spec:
6059
- name: shm
6160
emptyDir:
6261
medium: Memory
63-
sizeLimit: 1Gi
62+
sizeLimit: 1Gi

chart/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ api:
3535
# Container image config
3636
image:
3737
repository: vllm/vllm-openai
38-
version: v0.4.1
38+
version: v0.4.2
3939
monitoring:
4040
enabled: true
4141
# Service config
@@ -98,7 +98,7 @@ ui:
9898
# Container image config
9999
image:
100100
repository: ghcr.io/stackhpc/azimuth-llm-ui-base
101-
version: "0.2.0-rc1"
101+
version: "0.3.0"
102102
# Service config
103103
service:
104104
name: web-app

0 commit comments

Comments
 (0)