values.yaml 1.2 KB

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