From b5183ce31b76c311139883d98593cf0a6e7fba41 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 13 Nov 2024 16:56:09 -0800 Subject: [PATCH] fix migration job --- .../charts/litellm-helm/templates/migrations-job.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deploy/charts/litellm-helm/templates/migrations-job.yaml b/deploy/charts/litellm-helm/templates/migrations-job.yaml index 78684bcab..486072690 100644 --- a/deploy/charts/litellm-helm/templates/migrations-job.yaml +++ b/deploy/charts/litellm-helm/templates/migrations-job.yaml @@ -17,14 +17,14 @@ spec: command: ["python", "litellm/proxy/prisma_migration.py"] workingDir: "/app" env: - {{- if .Values.db.deployStandalone }} - - name: DATABASE_URL - value: postgresql://{{ .Values.postgresql.auth.username }}:{{ .Values.postgresql.auth.password }}@{{ .Release.Name }}-postgresql/{{ .Values.postgresql.auth.database }} - {{- else if .Values.db.useExisting }} + {{- if .Values.db.useExisting }} - name: DATABASE_URL value: {{ .Values.db.url | quote }} + {{- else }} + - name: DATABASE_URL + value: postgresql://{{ .Values.postgresql.auth.username }}:{{ .Values.postgresql.auth.password }}@{{ .Release.Name }}-postgresql/{{ .Values.postgresql.auth.database }} + {{- end }} - name: DISABLE_SCHEMA_UPDATE value: "false" # always run the migration from the Helm PreSync hook, override the value set - {{- end }} restartPolicy: OnFailure backoffLimit: {{ .Values.migrationJob.backoffLimit }}