values.yaml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. image:
  2. repository: altran1502/immich-server
  3. pullPolicy: IfNotPresent
  4. tag: v1.85.0
  5. webImage:
  6. repository: altran1502/immich-web
  7. pullPolicy: IfNotPresent
  8. tag: v1.85.0
  9. proxyImage:
  10. repository: altran1502/immich-proxy
  11. pullPolicy: IfNotPresent
  12. tag: v1.85.0
  13. mlImage:
  14. repository: altran1502/immich-machine-learning
  15. pullPolicy: IfNotPresent
  16. tag: v1.85.0
  17. typesenseImage:
  18. repository: typesense/typesense
  19. pullPolicy: IfNotPresent
  20. tag: 0.25.1
  21. resources:
  22. limits:
  23. cpu: 4000m
  24. memory: 8Gi
  25. immichGPU: {}
  26. immichConfig:
  27. publicLoginMessage: ''
  28. enableML: true
  29. enableTypesense: true
  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. serverPort: 32000
  36. webPort: 32001
  37. machinelearningPort: 32002
  38. microservicesPort: 32003
  39. typesensePort: 32004
  40. immichStorage:
  41. uploads:
  42. type: ixVolume
  43. datasetName: uploads
  44. library:
  45. type: ixVolume
  46. datasetName: library
  47. thumbs:
  48. type: ixVolume
  49. datasetName: thumbs
  50. profile:
  51. type: ixVolume
  52. datasetName: profile
  53. video:
  54. type: ixVolume
  55. datasetName: video
  56. additionalLibraries: []
  57. pgData:
  58. type: ixVolume
  59. datasetName: pgData
  60. pgBackup:
  61. type: ixVolume
  62. datasetName: pgBackup
  63. notes:
  64. custom: |
  65. ## Database
  66. You can connect to the database using the pgAdmin App from the catalog
  67. <details>
  68. <summary>Database Details</summary>
  69. - Database: `immich`
  70. - Username: `immich`
  71. - Password: `{{ .Values.immichDbPass }}`
  72. - Host: `{{ .Values.immichDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
  73. - Port: `5432`
  74. </details>
  75. {{- $_ := unset .Values "immichDbPass" }}
  76. {{- $_ := unset .Values "immichDbHost" }}