From 67089af17a049f7e8085970fb477fec8accf4b08 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard Date: Wed, 19 Mar 2025 05:39:00 +0400 Subject: [PATCH 1/2] feat(helm): custom volume support --- helm-charts/infisical-standalone-postgres/Chart.yaml | 2 +- .../templates/infisical.yaml | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/helm-charts/infisical-standalone-postgres/Chart.yaml b/helm-charts/infisical-standalone-postgres/Chart.yaml index a4cbc49c7..6c042e841 100644 --- a/helm-charts/infisical-standalone-postgres/Chart.yaml +++ b/helm-charts/infisical-standalone-postgres/Chart.yaml @@ -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.4.0 +version: 1.4.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 diff --git a/helm-charts/infisical-standalone-postgres/templates/infisical.yaml b/helm-charts/infisical-standalone-postgres/templates/infisical.yaml index ac941c9b2..8684014d6 100644 --- a/helm-charts/infisical-standalone-postgres/templates/infisical.yaml +++ b/helm-charts/infisical-standalone-postgres/templates/infisical.yaml @@ -77,6 +77,14 @@ spec: {{- if $infisicalValues.resources }} resources: {{- toYaml $infisicalValues.resources | nindent 12 }} {{- end }} + {{- with $infisicalValues.extraVolumeMounts }} + volumeMounts: + {{- toYaml . | nindent 10 }} + {{- end }} + {{- with $infisicalValues.extraVolumes }} + volumes: + {{- toYaml . | nindent 8 }} + {{- end }} --- apiVersion: v1 From 43804f62e65ae8eaa8eb07a16b028e0cede2be65 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard Date: Wed, 19 Mar 2025 06:18:48 +0400 Subject: [PATCH 2/2] Update CHANGELOG.md --- helm-charts/infisical-standalone-postgres/CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/helm-charts/infisical-standalone-postgres/CHANGELOG.md b/helm-charts/infisical-standalone-postgres/CHANGELOG.md index 80b3d7fcc..342510a5c 100644 --- a/helm-charts/infisical-standalone-postgres/CHANGELOG.md +++ b/helm-charts/infisical-standalone-postgres/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.4.1 (March 19, 2025) + +Changes: +* Added support for supplying extra volume mounts and volumes via `infisical.extraVolumeMounts` and `infisical.extraVolumes` + ## 1.4.0 (November 06, 2024) Changes: