values.yaml 2.0 KB

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