forked from phoenix/litellm-mirror
litellm-helm: fix missing resource definitions in initContainer and missing DBname value for envVars in deployment.yaml (#5562)
* fix missing resource definitions in initContainer and missing DBname value in envVars in deployment.yaml * fix missing resource definitions in initContainer and missing DBname value in envVars in deployment.yaml --------- Co-authored-by: Peter Laß <peter.lass@maibornwolff.de>
This commit is contained in:
parent
a4f5fb3c30
commit
72ea6f2ea8
1 changed files with 3 additions and 1 deletions
|
@ -67,7 +67,7 @@ spec:
|
|||
- name: DATABASE_HOST
|
||||
value: {{ .Values.db.endpoint }}
|
||||
- name: DATABASE_NAME
|
||||
value: litellm
|
||||
value: {{ .Values.db.database }}
|
||||
{{- end }}
|
||||
command:
|
||||
- sh
|
||||
|
@ -89,6 +89,8 @@ spec:
|
|||
else
|
||||
echo "Database failed to become ready before we gave up waiting."
|
||||
fi
|
||||
resources:
|
||||
{{- toYaml .Values.resources | nindent 12 }}
|
||||
{{ if .Values.securityContext.readOnlyRootFilesystem }}
|
||||
volumeMounts:
|
||||
- name: tmp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue