12345678910111213141516171819202122232425262728293031323334353637 |
- ---
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: watchlistarr
- namespace: plex
- spec:
- strategy:
- type: Recreate
- selector:
- matchLabels:
- app: watchlistarr
- replicas: 1
- template:
- metadata:
- labels:
- app: watchlistarr
- spec:
- containers:
- - name: watchlistarr
- image: nylonee/watchlistarr:0.2.5
- env:
- - name: LOG_LEVEL
- value: DEBUG
- volumeMounts:
- - name: watchlistarr-secret
- readOnly: true
- mountPath: /app/config
- resources:
- requests:
- memory: '0'
- limits:
- memory: 500Mi
- volumes:
- - name: watchlistarr-secret
- secret:
- secretName: watchlistarr-secret
|