This commit is contained in:
43
services/PVR/Bazarr/deployment-bazarr.yaml
Normal file
43
services/PVR/Bazarr/deployment-bazarr.yaml
Normal file
@@ -0,0 +1,43 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: bazarr
|
||||
namespace: bazarr
|
||||
labels:
|
||||
app: bazarr
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: bazarr
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: bazarr
|
||||
spec:
|
||||
containers:
|
||||
- name: bazarr
|
||||
image: linuxserver/bazarr:latest
|
||||
imagePullPolicy: Always
|
||||
ports:
|
||||
- name: web
|
||||
containerPort: 6767
|
||||
volumeMounts:
|
||||
- mountPath: /config
|
||||
name: csismb-bazarr-config
|
||||
- mountPath: /movies
|
||||
name: csismb-bazarr-movies
|
||||
- mountPath: /tv
|
||||
name: csismb-bazarr-series
|
||||
volumes:
|
||||
- name: csismb-bazarr-config
|
||||
persistentVolumeClaim:
|
||||
claimName: csismb-bazarr-config
|
||||
- name: csismb-bazarr-movies
|
||||
persistentVolumeClaim:
|
||||
claimName: csismb-bazarr-movies
|
||||
- name: csismb-bazarr-series
|
||||
persistentVolumeClaim:
|
||||
claimName: csismb-bazarr-series
|
||||
Reference in New Issue
Block a user