52 lines
1.3 KiB
YAML
52 lines
1.3 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -f compose-yarr.yaml
|
|
kompose.version: 1.38.0 (HEAD)
|
|
labels:
|
|
io.kompose.service: bazarr
|
|
name: bazarr
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
io.kompose.service: bazarr
|
|
strategy:
|
|
type: Recreate
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -f compose-yarr.yaml
|
|
kompose.version: 1.38.0 (HEAD)
|
|
labels:
|
|
io.kompose.service: bazarr
|
|
spec:
|
|
containers:
|
|
- env:
|
|
- name: PGID
|
|
value: "1000"
|
|
- name: PUID
|
|
value: "1000"
|
|
- name: TZ
|
|
value: America/New_York
|
|
image: ghcr.io/hotio/bazarr:latest
|
|
name: bazarr
|
|
ports:
|
|
- containerPort: 6767
|
|
protocol: TCP
|
|
name: web-ui
|
|
volumeMounts:
|
|
- mountPath: /config
|
|
name: bazarr-config
|
|
- mountPath: /data/media
|
|
name: bazarr-media
|
|
restartPolicy: Always
|
|
volumes:
|
|
- name: bazarr-config
|
|
persistentVolumeClaim:
|
|
claimName: bazarr-config-pvc
|
|
- name: bazarr-media
|
|
nfs:
|
|
server: robin.home.nest
|
|
path: /yarr/media
|