ix_values.yaml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. image:
  2. repository: vikunja/api
  3. pullPolicy: IfNotPresent
  4. tag: 0.21.0
  5. frontendImage:
  6. repository: vikunja/frontend
  7. pullPolicy: IfNotPresent
  8. tag: 0.21.0
  9. nginxImage:
  10. repository: nginx
  11. pullPolicy: IfNotPresent
  12. tag: 1.25.3
  13. resources:
  14. limits:
  15. cpu: 4000m
  16. memory: 8Gi
  17. vikunjaConfig:
  18. url: ''
  19. maxFileSize: 20
  20. additionalEnvs: []
  21. vikunjaRunAs:
  22. user: 568
  23. group: 568
  24. vikunjaNetwork:
  25. webPort: 31002
  26. vikunjaStorage:
  27. additionalStorages: []
  28. data:
  29. type: ixVolume
  30. ixVolumeConfig:
  31. datasetName: data
  32. pgData:
  33. type: ixVolume
  34. ixVolumeConfig:
  35. datasetName: pgData
  36. pgBackup:
  37. type: ixVolume
  38. ixVolumeConfig:
  39. datasetName: pgBackup
  40. notes:
  41. custom: |
  42. ## Database
  43. You can connect to the database using the pgAdmin App from the catalog
  44. <details>
  45. <summary>Database Details</summary>
  46. - Database: `vikunja`
  47. - Username: `vikunja`
  48. - Password: `{{ .Values.vikunjaDbPass }}`
  49. - Host: `{{ .Values.vikunjaDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
  50. - Port: `5432`
  51. </details>
  52. {{- $_ := unset .Values "vikunjaDbPass" }}
  53. {{- $_ := unset .Values "vikunjaDbHost" }}
  54. # Not exposed to the user,
  55. # just used internally
  56. vikunjaPorts:
  57. api: 3456
  58. frontHttp: 5000
  59. frontHttp2: 5001