8gears / n8n-helm-chart

A Kubernetes Helm chart for n8n a Workflow Automation Tool. Easily automate tasks across different services.
https://artifacthub.io/packages/helm/open-8gears/n8n
Apache License 2.0
187 stars 97 forks source link

fixed secret volume mnt for existing secret #51

Closed biclighter81 closed 1 year ago

biclighter81 commented 1 year ago

Hello together, if you use an existingSecret to set your n8n configuration variables, the volume gets specified in the volumes section of the deployment: `{{- if or (.Values.secret) (.Values.existingSecret) }}

but it doesn't get mounted because of:

`{{- if .Values.secret }}

I think the mount should be created if secret or existing secret is specified. What do you think?

Vad1mo commented 1 year ago

@biclighter81 thank you for your contribution!

blxs commented 1 year ago

thank you @biclighter81