values.yaml 1.7 KB

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