summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-01-30 23:48:16 +0200
committerPaul Buetow <paul@buetow.org>2026-01-30 23:48:16 +0200
commit3d0c5116ad633b91a4aacefa44183c806ff3040a (patch)
tree8ded7f03964c5e651e87e7841862af022df0b24c
parentf7c7e8ee96fd4a5c0a839f3b5e7de40167a104b1 (diff)
Fix YAML indentation in Jellyfin deployment
Amp-Thread-ID: https://ampcode.com/threads/T-019c10db-886d-76d8-80c5-0977578b492f Co-authored-by: Amp <amp@ampcode.com>
-rw-r--r--f3s/jellyfin/helm-chart/templates/deployment.yaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/f3s/jellyfin/helm-chart/templates/deployment.yaml b/f3s/jellyfin/helm-chart/templates/deployment.yaml
index a4953fd..c6d94e7 100644
--- a/f3s/jellyfin/helm-chart/templates/deployment.yaml
+++ b/f3s/jellyfin/helm-chart/templates/deployment.yaml
@@ -33,14 +33,14 @@ spec:
mountPath: /media/libraries
- name: jellyfin-data
mountPath: /data
- volumes:
- - name: jellyfin-config
+ volumes:
+ - name: jellyfin-config
persistentVolumeClaim:
claimName: jellyfin-pvc
- - name: jellyfin-libraries
+ - name: jellyfin-libraries
persistentVolumeClaim:
claimName: jellyfin-libraries-pvc
- - name: jellyfin-data
+ - name: jellyfin-data
persistentVolumeClaim:
claimName: jellyfin-data-pvc
---