mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +00:00
[plex] Quote values for extraEnv (#361)
Ensure we always use a string and prevent accidental usage of incorrect type (such as using true or false as values)
This commit is contained in:
parent
6d3bf5c29c
commit
0e4e12443a
@ -2,7 +2,7 @@ apiVersion: v2
|
||||
appVersion: 1.20.2.3402
|
||||
description: Plex Media Server
|
||||
name: plex
|
||||
version: 2.1.0
|
||||
version: 2.1.1
|
||||
keywords:
|
||||
- plex
|
||||
home: https://plex.tv/
|
||||
|
@ -175,7 +175,7 @@ spec:
|
||||
# Extra ENV Values supplied by user
|
||||
{{- range $key, $value := .Values.extraEnv }}
|
||||
- name: {{ $key }}
|
||||
value: {{ $value }}
|
||||
value: "{{ $value }}"
|
||||
{{- end }}
|
||||
# This is part of pkcsMangler
|
||||
{{- if .Values.certificate.pkcsMangler.enabled }}
|
||||
@ -310,7 +310,7 @@ spec:
|
||||
- name: {{ .name }}
|
||||
persistentVolumeClaim:
|
||||
claimName: {{ .claimName }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
- name: shared
|
||||
emptyDir: {}
|
||||
|
Loading…
Reference in New Issue
Block a user