diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-30 23:10:30 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-30 23:10:30 +0200 |
| commit | 69c7b470e42dc96c0b0c0308823d130f3a8492fb (patch) | |
| tree | 8a748f714af69829995e69f6bd15f577839fbce3 /f3s/jellyfin | |
| parent | 7f4a18204126755efa3739356e4db0964c0cf1d7 (diff) | |
Add jellyfin deployment and service
Amp-Thread-ID: https://ampcode.com/threads/T-019c10b2-ea57-752e-818e-33a56d69d9fa
Co-authored-by: Amp <amp@ampcode.com>
Diffstat (limited to 'f3s/jellyfin')
| -rw-r--r-- | f3s/jellyfin/helm-chart/templates/deployment.yaml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/f3s/jellyfin/helm-chart/templates/deployment.yaml b/f3s/jellyfin/helm-chart/templates/deployment.yaml new file mode 100644 index 0000000..431f4c8 --- /dev/null +++ b/f3s/jellyfin/helm-chart/templates/deployment.yaml @@ -0,0 +1,44 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: jellyfin-server + namespace: services +spec: + replicas: 1 + selector: + matchLabels: + app: jellyfin-server + template: + metadata: + labels: + app: jellyfin-server + spec: + containers: + - name: jellyfin + image: jellyfin/jellyfin:latest + ports: + - containerPort: 8096 + name: http + volumeMounts: + - name: jellyfin-config + mountPath: /config + volumes: + - name: jellyfin-config + persistentVolumeClaim: + claimName: jellyfin-pvc +--- +apiVersion: v1 +kind: Service +metadata: + labels: + app: jellyfin-server + name: jellyfin-server + namespace: services +spec: + ports: + - name: http + port: 8096 + protocol: TCP + targetPort: 8096 + selector: + app: jellyfin-server |
