values.yaml 1.9 KB

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