values.yaml 2.0 KB

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