ix_values.yaml 1.9 KB

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