diff --git a/deploy/charts/litellm-helm/templates/migrations-job.yaml b/deploy/charts/litellm-helm/templates/migrations-job.yaml index 5c34a8feb..ec319fe66 100644 --- a/deploy/charts/litellm-helm/templates/migrations-job.yaml +++ b/deploy/charts/litellm-helm/templates/migrations-job.yaml @@ -15,11 +15,13 @@ spec: image: "ghcr.io/berriai/litellm:main-stable" command: ["python", "/litellm/proxy/prisma_migration.py"] env: + {{- if .Values.db.deployStandalone }} - name: DATABASE_URL - valueFrom: - secretKeyRef: - name: {{ .Values.db.secret.name }} - key: url + value: postgresql://{{ .Values.postgresql.auth.username }}:{{ .Values.postgresql.auth.password }}@{{ .Release.Name }}-postgresql/{{ .Values.postgresql.auth.database }} + {{- else if .Values.db.useExisting }} + - name: DATABASE_URL + value: {{ .Values.db.url | quote }} + {{- end }} - name: DISABLE_SCHEMA_UPDATE value: "{{ .Values.migrationJob.disableSchemaUpdate }}" restartPolicy: OnFailure