From e841e806984bc45d10537abd4c525a810998f39a Mon Sep 17 00:00:00 2001
From: Janne Mareike Koschinski <janne@kuschku.de>
Date: Tue, 10 May 2022 22:57:28 +0200
Subject: [PATCH] fix: correct jellyfin deployment

---
 jellyfin/templates/deployment.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/jellyfin/templates/deployment.yaml b/jellyfin/templates/deployment.yaml
index 7b191d2..1d83e06 100644
--- a/jellyfin/templates/deployment.yaml
+++ b/jellyfin/templates/deployment.yaml
@@ -26,11 +26,11 @@ spec:
         {{- toYaml .Values.podSecurityContext | nindent 8 }}
       volumes:
         - name: config
-          {{- toYaml .Values.volumes.config | nindent 10 }}
+          {{- .Values.volumes.config | nindent 10 }}
         - name: data
-          {{- toYaml .Values.volumes.data | nindent 10 }}
+          {{- .Values.volumes.data | nindent 10 }}
         - name: media
-          {{- toYaml .Values.volumes.media | nindent 10 }}
+          {{- .Values.volumes.media | nindent 10 }}
       containers:
         - name: {{ .Chart.Name }}
           securityContext:
-- 
GitLab