2023-12-05 11:52:59 +00:00
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: bazarr
|
|
|
|
name: bazarr
|
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: bazarr
|
2024-10-03 15:58:30 +00:00
|
|
|
strategy:
|
|
|
|
type: Recreate
|
2023-12-05 11:52:59 +00:00
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
creationTimestamp: null
|
|
|
|
labels:
|
|
|
|
app: bazarr
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- image: hotio/bazarr:release
|
|
|
|
name: bazarr
|
|
|
|
ports:
|
|
|
|
- name: http
|
|
|
|
containerPort: 6767
|
|
|
|
protocol: TCP
|
2024-10-03 15:59:17 +00:00
|
|
|
resources:
|
2024-10-03 16:27:06 +00:00
|
|
|
requests:
|
|
|
|
cpu: 25m
|
|
|
|
memory: 380258472
|
2023-12-05 11:52:59 +00:00
|
|
|
volumeMounts:
|
|
|
|
- name: config
|
|
|
|
mountPath: /config
|
|
|
|
- name: series
|
|
|
|
mountPath: /series
|
|
|
|
- name: oldseries
|
|
|
|
mountPath: /oldseries
|
|
|
|
- name: films
|
|
|
|
mountPath: /films
|
|
|
|
volumes:
|
|
|
|
- name: config
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: bazarr-config-data
|
|
|
|
- name: series
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: smb-series
|
|
|
|
- name: oldseries
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: smb-oldseries
|
|
|
|
- name: films
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: smb-films
|
|
|
|
|