File tree 2 files changed +17
-1
lines changed
deploy/charts/litellm-helm
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ type: application
18
18
# This is the chart version. This version number should be incremented each time you make changes
19
19
# to the chart and its templates, including the app version.
20
20
# Versions are expected to follow Semantic Versioning (https://semver.org/)
21
- version : 0.4.0
21
+ version : 0.4.1
22
22
23
23
# This is the version number of the application being deployed. This version number should be
24
24
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 48
48
{{- end }}
49
49
- name : DISABLE_SCHEMA_UPDATE
50
50
value : " false" # always run the migration from the Helm PreSync hook, override the value set
51
+ {{- with .Values.volumeMounts }}
52
+ volumeMounts :
53
+ {{- toYaml . | nindent 12 }}
54
+ {{- end }}
55
+ {{- with .Values.volumes }}
56
+ volumes :
57
+ {{- toYaml . | nindent 8 }}
58
+ {{- end }}
51
59
restartPolicy : OnFailure
60
+ {{- with .Values.affinity }}
61
+ affinity :
62
+ {{- toYaml . | nindent 8 }}
63
+ {{- end }}
64
+ {{- with .Values.tolerations }}
65
+ tolerations :
66
+ {{- toYaml . | nindent 8 }}
67
+ {{- end }}
52
68
ttlSecondsAfterFinished : {{ .Values.migrationJob.ttlSecondsAfterFinished }}
53
69
backoffLimit : {{ .Values.migrationJob.backoffLimit }}
54
70
{{- end }}
You can’t perform that action at this time.
0 commit comments