apps
adguard
files
finance
homeassistant
immich
media
ingress.yaml
jellyfin.servicemonitor.yaml
kustomization.yaml
namespace.yaml
pvc.yaml
server.deployment.yaml
server.service.yaml
web.deployment.yaml
web.service.yaml
monitoring
nextcloud
ntfy
recipes
rss
syncthing
todos
whoami
infrastructure
kluster-deployments
.gitignore
.gitmodules
README.md
renovate.json
28 lines
576 B
YAML
28 lines
576 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: jellyfin-web
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: jellyfin-web
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: jellyfin-web
|
|
spec:
|
|
containers:
|
|
- name: jellyfin-web
|
|
image: ghcr.io/jellyfin/jellyfin-vue
|
|
resources:
|
|
limits:
|
|
memory: "128Mi"
|
|
cpu: "30m"
|
|
ports:
|
|
- containerPort: 80
|
|
env:
|
|
- name: TZ
|
|
value: Europe/Berlin
|
|
- name: DEFAULT_SERVERS
|
|
value: "https://media-backend.kluster.moll.re"
|