done :))))

This commit is contained in:
2024-10-29 14:08:26 +01:00
parent a96527c745
commit 003189d37b
23 changed files with 500 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
apiVersion: v1
kind: Pod
metadata:
name: bazarr
labels:
app.kubernetes.io/name: bazarr
spec:
volumes:
- name: nfs-vol
nfs:
server: 192.168.0.114
path: /mnt/test1/media/
- name: config
persistentVolumeClaim:
claimName: config-bazarr
containers:
- name: bazarr
image: ghcr.io/hotio/bazarr:latest
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: UMASK
value: "002"
- name: TZ
value: "Etc/UTC"
- name: WEBUI_PORTS
value: "6767/tcp,6767/udp"
ports:
- containerPort: 6767
volumeMounts:
- name: config
mountPath: /config
- name: nfs-vol
mountPath: /media