values.yaml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. image:
  2. repository: fireflyiii/core
  3. pullPolicy: IfNotPresent
  4. tag: version-6.1.25
  5. importerImage:
  6. repository: fireflyiii/data-importer
  7. pullPolicy: IfNotPresent
  8. tag: version-1.5.7
  9. resources:
  10. limits:
  11. cpu: 4000m
  12. memory: 8Gi
  13. fireflyConfig:
  14. appUrl: http://localhost:30064
  15. additionalEnvs: []
  16. enableImporter: false
  17. additionalImporterEnvs: []
  18. fireflyNetwork:
  19. webPort: 30064
  20. importerPort: 30065
  21. hostNetwork: false
  22. fireflyStorage:
  23. uploads:
  24. type: ixVolume
  25. ixVolumeConfig:
  26. datasetName: uploads
  27. pgData:
  28. type: ixVolume
  29. ixVolumeConfig:
  30. datasetName: pgData
  31. pgBackup:
  32. type: ixVolume
  33. ixVolumeConfig:
  34. datasetName: pgBackup
  35. additionalStorages: []
  36. notes:
  37. custom: |
  38. {{- if .Values.fireflyConfig.enableImporter }}
  39. ## Data Importer
  40. You can reach data importer at http://<ip>:{{ .Values.fireflyNetwork.importerPort }}
  41. {{- end }}
  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: `firefly`
  47. - Username: `firefly`
  48. - Password: `{{ .Values.fireflyDbPass }}`
  49. - Host: `{{ .Values.fireflyDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
  50. - Port: `5432`
  51. </details>
  52. {{- $_ := unset .Values "fireflyDbPass" }}
  53. {{- $_ := unset .Values "fireflyDbHost" }}