summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--f3s/jellyfin/helm-chart/templates/deployment.yaml34
1 files changed, 20 insertions, 14 deletions
diff --git a/f3s/jellyfin/helm-chart/templates/deployment.yaml b/f3s/jellyfin/helm-chart/templates/deployment.yaml
index 1dc9bcd..595f7f5 100644
--- a/f3s/jellyfin/helm-chart/templates/deployment.yaml
+++ b/f3s/jellyfin/helm-chart/templates/deployment.yaml
@@ -13,21 +13,26 @@ spec:
labels:
app: jellyfin-server
spec:
- nodeSelector:
- kubernetes.io/hostname: f0.lan.buetow.org
containers:
- - name: jellyfin
- image: jellyfin/jellyfin:10.8.13
- ports:
- - containerPort: 8096
- name: http
- 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
@@ -37,6 +42,7 @@ metadata:
name: jellyfin-server
namespace: services
spec:
+ type: ClusterIP
ports:
- name: http
port: 8096