values.yaml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. image:
  2. repository: listmonk/listmonk
  3. pullPolicy: IfNotPresent
  4. tag: v4.1.0
  5. resources:
  6. limits:
  7. cpu: 4000m
  8. memory: 8Gi
  9. listmonkConfig:
  10. adminUsername: ''
  11. adminPassword: ''
  12. additionalEnvs: []
  13. listmonkNetwork:
  14. webPort: 30093
  15. hostNetwork: false
  16. listmonkRunAs:
  17. user: 568
  18. group: 568
  19. listmonkStorage:
  20. uploads:
  21. type: ixVolume
  22. ixVolumeConfig:
  23. datasetName: uploads
  24. pgData:
  25. type: ixVolume
  26. ixVolumeConfig:
  27. datasetName: pgData
  28. pgBackup:
  29. type: ixVolume
  30. ixVolumeConfig:
  31. datasetName: pgBackup
  32. additionalStorages: []
  33. notes:
  34. custom: |
  35. ## Database
  36. You can connect to the database using the pgAdmin App from the catalog
  37. <details>
  38. <summary>Database Details</summary>
  39. - Database: `listmonk`
  40. - Username: `listmonk`
  41. - Password: `{{ .Values.listmonkDbPass }}`
  42. - Host: `{{ .Values.listmonkDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
  43. - Port: `5432`
  44. </details>
  45. {{- $_ := unset .Values "listmonkDbPass" }}
  46. {{- $_ := unset .Values "listmonkDbHost" }}