values.yaml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. image:
  2. repository: ghcr.io/plankanban/planka
  3. pullPolicy: IfNotPresent
  4. tag: 1.15.0
  5. resources:
  6. limits:
  7. cpu: 4000m
  8. memory: 8Gi
  9. plankaConfig:
  10. defaultAdminEmail: ''
  11. defaultAdminName: ''
  12. defaultAdminPassword: ''
  13. defaultAdminUsername: ''
  14. trustProxy: false
  15. baseURL: http://localhost:30062
  16. additionalEnvs: []
  17. plankaNetwork:
  18. webPort: 30062
  19. hostNetwork: false
  20. plankaStorage:
  21. avatars:
  22. type: ixVolume
  23. datasetName: avatars
  24. backgroundImages:
  25. type: ixVolume
  26. datasetName: bg-img
  27. attachments:
  28. type: ixVolume
  29. datasetName: attachments
  30. additionalStorages: []
  31. pgData:
  32. type: ixVolume
  33. datasetName: pgData
  34. pgBackup:
  35. type: ixVolume
  36. datasetName: pgBackup
  37. notes:
  38. custom: |
  39. ## Database
  40. You can connect to the database using the pgAdmin App from the catalog
  41. <details>
  42. <summary>Database Details</summary>
  43. - Database: `planka`
  44. - Username: `planka`
  45. - Password: `{{ .Values.plankaDbPass }}`
  46. - Host: `{{ .Values.plankaDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
  47. - Port: `5432`
  48. </details>
  49. {{- $_ := unset .Values "plankaDbPass" }}
  50. {{- $_ := unset .Values "plankaDbHost" }}