mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-03 07:49:03 +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
|
appVersion: 1.20.2.3402
|
||||||
description: Plex Media Server
|
description: Plex Media Server
|
||||||
name: plex
|
name: plex
|
||||||
version: 2.1.0
|
version: 2.1.1
|
||||||
keywords:
|
keywords:
|
||||||
- plex
|
- plex
|
||||||
home: https://plex.tv/
|
home: https://plex.tv/
|
||||||
|
@ -175,7 +175,7 @@ spec:
|
|||||||
# Extra ENV Values supplied by user
|
# Extra ENV Values supplied by user
|
||||||
{{- range $key, $value := .Values.extraEnv }}
|
{{- range $key, $value := .Values.extraEnv }}
|
||||||
- name: {{ $key }}
|
- name: {{ $key }}
|
||||||
value: {{ $value }}
|
value: "{{ $value }}"
|
||||||
{{- end }}
|
{{- end }}
|
||||||
# This is part of pkcsMangler
|
# This is part of pkcsMangler
|
||||||
{{- if .Values.certificate.pkcsMangler.enabled }}
|
{{- if .Values.certificate.pkcsMangler.enabled }}
|
||||||
@ -310,7 +310,7 @@ spec:
|
|||||||
- name: {{ .name }}
|
- name: {{ .name }}
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: {{ .claimName }}
|
claimName: {{ .claimName }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
- name: shared
|
- name: shared
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
|
Loading…
Reference in New Issue
Block a user