fix(helm): custom volumes for migration pod

This commit is contained in:
Daniel Hougaard
2025-10-10 16:21:52 +04:00
parent 01b6c29996
commit 806fbd6470
3 changed files with 15 additions and 1 deletions

View File

@@ -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:

View File

@@ -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

View File

@@ -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 }}