diff options
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 |
