fix: quote env values

When providing the UID or GID as a number the chart fails to deploy, adding quotations to where extraEnv lands the extra environment variables fixes the issue (#94)

Updating method to quote the env values per PR conversation, updating chart version with a patch bump

Co-authored-by: Joel Chapman <Joel.Chapman@BearKC.com>
This commit is contained in:
JoelBChapmanII 2023-11-14 16:48:55 -06:00 committed by GitHub
parent 603f9e0b27
commit cbf988ee48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,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: 0.1.6
version: 0.1.7
# 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

@ -101,7 +101,7 @@ spec:
{{- end }}
{{- range $key, $value := .Values.extraEnv }}
- name: {{ $key }}
value: {{ $value }}
value: {{ $value | quote }}
{{- end }}
{{- with .Values.pms.resources }}
resources: