watchlistarr.yaml 749 B

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. apiVersion: apps/v1
  3. kind: Deployment
  4. metadata:
  5. name: watchlistarr
  6. namespace: plex
  7. spec:
  8. strategy:
  9. type: Recreate
  10. selector:
  11. matchLabels:
  12. app: watchlistarr
  13. replicas: 1
  14. template:
  15. metadata:
  16. labels:
  17. app: watchlistarr
  18. spec:
  19. containers:
  20. - name: watchlistarr
  21. image: nylonee/watchlistarr:0.2.5
  22. env:
  23. - name: LOG_LEVEL
  24. value: DEBUG
  25. volumeMounts:
  26. - name: watchlistarr-secret
  27. readOnly: true
  28. mountPath: /app/config
  29. resources:
  30. requests:
  31. memory: '0'
  32. limits:
  33. memory: 500Mi
  34. volumes:
  35. - name: watchlistarr-secret
  36. secret:
  37. secretName: watchlistarr-secret