values.yaml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. image:
  2. repository: altran1502/immich-server
  3. pullPolicy: IfNotPresent
  4. tag: v1.91.4
  5. mlImage:
  6. repository: altran1502/immich-machine-learning
  7. pullPolicy: IfNotPresent
  8. tag: v1.91.4
  9. pgvectorImage:
  10. repository: tensorchord/pgvecto-rs
  11. pullPolicy: IfNotPresent
  12. tag: pg15-v0.1.11
  13. resources:
  14. limits:
  15. cpu: 4000m
  16. memory: 8Gi
  17. immichGPU: {}
  18. immichConfig:
  19. publicLoginMessage: ''
  20. enableML: true
  21. immichNetwork:
  22. webuiPort: 30041
  23. # Not user configurable, will be hidden on UI
  24. # Putting it here in case it needs to be configurable
  25. # in the future.
  26. machinelearningPort: 32002
  27. microservicesPort: 32003
  28. immichStorage:
  29. uploads:
  30. type: ixVolume
  31. ixVolumeConfig:
  32. datasetName: uploads
  33. library:
  34. type: ixVolume
  35. ixVolumeConfig:
  36. datasetName: library
  37. thumbs:
  38. type: ixVolume
  39. ixVolumeConfig:
  40. datasetName: thumbs
  41. profile:
  42. type: ixVolume
  43. ixVolumeConfig:
  44. datasetName: profile
  45. video:
  46. type: ixVolume
  47. ixVolumeConfig:
  48. datasetName: video
  49. additionalLibraries: []
  50. pgData:
  51. type: ixVolume
  52. ixVolumeConfig:
  53. datasetName: pgData
  54. pgBackup:
  55. type: ixVolume
  56. ixVolumeConfig:
  57. datasetName: pgBackup
  58. notes:
  59. custom: |
  60. ## Database
  61. You can connect to the database using the pgAdmin App from the catalog
  62. <details>
  63. <summary>Database Details</summary>
  64. - Database: `immich`
  65. - Username: `immich`
  66. - Password: `{{ .Values.immichDbPass }}`
  67. - Host: `{{ .Values.immichDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
  68. - Port: `5432`
  69. </details>
  70. {{- $_ := unset .Values "immichDbPass" }}
  71. {{- $_ := unset .Values "immichDbHost" }}