Merge pull request #4648 from Infisical/daniel/fix-helm-hsm

fix(helm): custom volumes for migration pod
This commit is contained in:
Daniel Hougaard
2025-10-10 20:47:58 +04:00
committed by GitHub
5 changed files with 19 additions and 1 deletions

View File

@@ -30,6 +30,8 @@ jobs:
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.7.0
with:
yamale_version: "6.0.0"
- name: Run chart-testing (lint)
run: ct lint --config ct.yaml --charts helm-charts/infisical-standalone-postgres

View File

@@ -33,6 +33,8 @@ jobs:
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.7.0
with:
yamale_version: "6.0.0"
- name: Run chart-testing (lint)
run: ct lint --config ct.yaml --charts helm-charts/infisical-standalone-postgres

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