values.yaml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. image:
  2. repository: fireflyiii/core
  3. pullPolicy: IfNotPresent
  4. tag: version-6.0.30
  5. importerImage:
  6. repository: fireflyiii/data-importer
  7. pullPolicy: IfNotPresent
  8. tag: version-1.3.9
  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. datasetName: uploads
  26. pgData:
  27. type: ixVolume
  28. hostPath: pgData
  29. pgBackup:
  30. type: ixVolume
  31. hostPath: pgBackup
  32. notes:
  33. custom: |
  34. {{- if .Values.fireflyConfig.enableImporter }}
  35. ## Data Importer
  36. You can reach data importer at http://<ip>:{{ .Values.fireflyNetwork.importerPort }}
  37. {{- end }}
  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: `firefly`
  43. - Username: `firefly`
  44. - Password: `{{ .Values.fireflyDbPass }}`
  45. - Host: `{{ .Values.fireflyDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
  46. - Port: `5432`
  47. </details>
  48. {{- $_ := unset .Values "fireflyDbPass" }}
  49. {{- $_ := unset .Values "fireflyDbHost" }}