mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-09 15:38:03 -05:00
fix(helm): custom volumes for migration pod
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
## 1.7.1 (October 10, 2025)
|
||||
|
||||
Changes:
|
||||
* Fixed using `extraVolumes` and `extraVolumeMounts` for when Infisical auto migration enabled
|
||||
* Previously the custom volumes and custom volume mounts would only be added to the infisical core pods, but not the migration pod.
|
||||
|
||||
## 1.7.0 (September 30, 2025)
|
||||
|
||||
Changes:
|
||||
|
||||
@@ -7,7 +7,7 @@ type: application
|
||||
# This is the chart version. This version number should be incremented each time you make changes
|
||||
# to the chart and its templates, including the app version.
|
||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||
version: 1.7.0
|
||||
version: 1.7.1
|
||||
|
||||
# This is the version number of the application being deployed. This version number should be
|
||||
# incremented each time you make changes to the application. Versions are not expected to
|
||||
|
||||
@@ -41,4 +41,12 @@ spec:
|
||||
envFrom:
|
||||
- secretRef:
|
||||
name: {{ $infisicalValues.kubeSecretRef }}
|
||||
{{- with $infisicalValues.extraVolumeMounts }}
|
||||
volumeMounts:
|
||||
{{- toYaml . | nindent 10 }}
|
||||
{{- end }}
|
||||
{{- with $infisicalValues.extraVolumes }}
|
||||
volumes:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
Reference in New Issue
Block a user