summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-01-30 23:37:56 +0200
committerPaul Buetow <paul@buetow.org>2026-01-30 23:37:56 +0200
commit0481c0a119a9f5d52b6ff7ef61a1233d7bd7111f (patch)
treeb7354cc62f803f21362046377a6811d47b5ff2c0
parentba0cbe3c4ff66e257863f40af0af61fe1aa514a2 (diff)
fix: correct YAML indentation in deployment - containers and volumes at proper spec levels
Amp-Thread-ID: https://ampcode.com/threads/T-019c10d5-2936-7279-9183-9efde70ab11c Co-authored-by: Amp <amp@ampcode.com>
-rw-r--r--f3s/jellyfin/helm-chart/templates/deployment.yaml38
1 files changed, 19 insertions, 19 deletions
diff --git a/f3s/jellyfin/helm-chart/templates/deployment.yaml b/f3s/jellyfin/helm-chart/templates/deployment.yaml
index ea3c43f..f450d3b 100644
--- a/f3s/jellyfin/helm-chart/templates/deployment.yaml
+++ b/f3s/jellyfin/helm-chart/templates/deployment.yaml
@@ -14,25 +14,25 @@ spec:
app: jellyfin-server
spec:
containers:
- - name: jellyfin
- image: jellyfin/jellyfin:10.8.13
- ports:
- - containerPort: 8096
- name: http
- resources:
- requests:
- cpu: 100m
- memory: 256Mi
- limits:
- cpu: 2000m
- memory: 2Gi
- volumeMounts:
- - name: jellyfin-config
- mountPath: /config
- volumes:
- - name: jellyfin-config
- persistentVolumeClaim:
- claimName: jellyfin-pvc
+ - name: jellyfin
+ image: jellyfin/jellyfin:10.8.13
+ ports:
+ - containerPort: 8096
+ name: http
+ resources:
+ requests:
+ cpu: 100m
+ memory: 256Mi
+ limits:
+ cpu: 2000m
+ memory: 2Gi
+ volumeMounts:
+ - name: jellyfin-config
+ mountPath: /config
+ volumes:
+ - name: jellyfin-config
+ persistentVolumeClaim:
+ claimName: jellyfin-pvc
---
apiVersion: v1
kind: Service