summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-01-30 23:30:02 +0200
committerPaul Buetow <paul@buetow.org>2026-01-30 23:30:02 +0200
commit2038f2f45b7ea6ca7b749abb9cbf9529fd0e7854 (patch)
tree02c54ae7f23d5b0fbc0335cc1b114b1c59608edc
parenta9fe79d08db8622f968062e2a45d34f560562a27 (diff)
remove node selector
-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