values.yaml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #
  2. # IMPORTANT NOTE
  3. #
  4. # This chart inherits from our common library chart. You can check the default values/options here:
  5. # https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
  6. #
  7. image:
  8. # -- image repository
  9. repository: shenxn/protonmail-bridge
  10. # -- image tag
  11. tag: 1.8.7-1
  12. # -- image pull policy
  13. pullPolicy: IfNotPresent
  14. # -- environment variables.
  15. # @default -- See below
  16. env:
  17. # -- Set the container timezone
  18. TZ: Europe/Zurich
  19. # -- Configures service settings for the chart.
  20. # @default -- See values.yaml
  21. service:
  22. main:
  23. type: NodePort
  24. ports:
  25. smtp:
  26. enabled: true
  27. protocol: TCP
  28. port: 25
  29. targetPort: 25
  30. nodePort: 30025
  31. imap:
  32. enabled: true
  33. protocol: TCP
  34. port: 143
  35. targetPort: 143
  36. nodePort: 30143
  37. ingress:
  38. # -- Enable and configure ingress settings for the chart under this key.
  39. # @default -- See values.yaml
  40. main:
  41. enabled: false
  42. # -- Configure persistence settings for the chart under this key.
  43. # @default -- See values.yaml
  44. persistence:
  45. config:
  46. enabled: true
  47. storageClass: "manual"
  48. existingClaim: "bridge-pvc"
  49. size: 100M
  50. resources:
  51. requests:
  52. memory: 900Mi
  53. cpu: 5m