values.yaml 1.8 KB

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