From 67089af17a049f7e8085970fb477fec8accf4b08 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard Date: Wed, 19 Mar 2025 05:39:00 +0400 Subject: [PATCH] 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 a4cbc49c77..6c042e8416 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 ac941c9b27..8684014d62 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