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
3 changes: 3 additions & 0 deletions charts/azimuth-llm/templates/api/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ spec:
env:
- name: DO_NOT_TRACK
value: "1"
{{- with .Values.api.extraEnv -}}
{{- . | toYaml | nindent 8 }}
{{- end -}}
{{- if .Values.huggingface.token }}
- name: HUGGING_FACE_HUB_TOKEN
value: {{ quote .Values.huggingface.token }}
Expand Down
5 changes: 5 additions & 0 deletions charts/azimuth-llm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@ api:
# Extra args to supply to the vLLM backend, see
# https://docs.vllm.ai/en/stable/serving/openai_compatible_server.html#command-line-arguments-for-the-server
extraArgs: []
# Extra env vars to provide to the vLLM pods
# Each env var should be formatted as
# - name: FOO
# value: "bar"
extraEnv: []
# Pod node selector labels
nodeSelector: {}
# Pod tolerations
Expand Down