TrueChartsClone/charts/stable/photoview/values.yaml

40 lines
937 B
YAML

image:
repository: tccr.io/truecharts/photoview
tag: 2.3.12@sha256:515b7a38cac62512b01fe81331e4cc4dcf98d51cad646d52695b90c7706ffeb6
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