values.yaml 1.7 KB

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