values.yaml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. image:
  2. repository: roundcube/roundcubemail
  3. pullPolicy: IfNotPresent
  4. tag: 1.6.9-apache
  5. resources:
  6. limits:
  7. cpu: 4000m
  8. memory: 8Gi
  9. roundcubeConfig:
  10. defaultHost: ''
  11. defaultPort: 143
  12. smtpServer: ''
  13. smtpPort: 587
  14. skin: elastic
  15. plugins:
  16. - archive
  17. - zipdownload
  18. aspellDicts: []
  19. uploadMaxSize: 5
  20. additionalEnvs: []
  21. roundcubeNetwork:
  22. webPort: 31007
  23. roundcubeStorage:
  24. html:
  25. type: ixVolume
  26. ixVolumeConfig:
  27. datasetName: html
  28. config:
  29. type: ixVolume
  30. ixVolumeConfig:
  31. datasetName: config
  32. temps:
  33. type: ixVolume
  34. ixVolumeConfig:
  35. datasetName: temps
  36. pgData:
  37. type: ixVolume
  38. ixVolumeConfig:
  39. datasetName: pgData
  40. pgBackup:
  41. type: ixVolume
  42. ixVolumeConfig:
  43. datasetName: pgBackup
  44. additionalStorages: []
  45. notes:
  46. custom: |
  47. ## Database
  48. You can connect to the database using the pgAdmin App from the catalog
  49. <details>
  50. <summary>Database Details</summary>
  51. - Database: `roundcube`
  52. - Username: `roundcube`
  53. - Password: `{{ .Values.roundcubeDbPass }}`
  54. - Host: `{{ .Values.roundcubeDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
  55. - Port: `5432`
  56. </details>
  57. {{- $_ := unset .Values "roundcubeDbPass" }}
  58. {{- $_ := unset .Values "roundcubeDbHost" }}