image: repository: tccr.io/truecharts/photoview tag: 2.3.13@sha256:2df4e8e7a7f9b15e7d4af8d3b85d20c37434cb8503f04f48c50d30f1982a757b pullPolicy: IfNotPresent env: PHOTOVIEW_DATABASE_DRIVER: "postgres" PHOTOVIEW_LISTEN_PORT: "{{ .Values.service.main.ports.main.targetPort }}" PHOTOVIEW_MEDIA_CACHE: "/cache" MAPBOX_TOKEN: "" PHOTOVIEW_DISABLE_FACE_RECOGNITION: false PHOTOVIEW_DISABLE_VIDEO_ENCODING: false PHOTOVIEW_DISABLE_RAW_PROCESSING: false PHOTOVIEW_POSTGRES_URL: secretKeyRef: name: dbcreds key: url service: main: ports: main: port: 10159 targetPort: 10159 persistence: # Don't use emptyDir, it stores, thumbnails and optimized media cache: enabled: true mountPath: "/cache" photos: enabled: true mountPath: "/photos" postgresql: enabled: true existingSecret: "dbcreds" postgresqlUsername: photoview postgresqlDatabase: photoview portal: enabled: true