We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7931b6 commit 9cfd7c7Copy full SHA for 9cfd7c7
deploy/charts/litellm-helm/templates/migrations-job.yaml
@@ -10,6 +10,11 @@ metadata:
10
checksum/config: {{ toYaml .Values | sha256sum }}
11
spec:
12
template:
13
+ metadata:
14
+ annotations:
15
+ {{- with .Values.migrationJob.annotations }}
16
+ {{- toYaml . | nindent 8 }}
17
+ {{- end }}
18
19
containers:
20
- name: prisma-migrations
deploy/charts/litellm-helm/values.yaml
@@ -186,5 +186,6 @@ migrationJob:
186
retries: 3 # Number of retries for the Job in case of failure
187
backoffLimit: 4 # Backoff limit for Job restarts
188
disableSchemaUpdate: false # Skip schema migrations for specific environments. When True, the job will exit with code 0.
189
+ annotations: {}
190
191
0 commit comments