41 lines
1,016 B
YAML
41 lines
1,016 B
YAML
image:
|
|
tag: latest
|
|
|
|
existingSecret: photos
|
|
|
|
config:
|
|
PHOTOPRISM_SITE_URL: "https://photos.minhas.io/"
|
|
PHOTOPRISM_SITE_CAPTION: "Asara's Photos"
|
|
PHOTOPRISM_SITE_DESCRIPTION: "Some photos I took that I like"
|
|
PHOTOPRISM_SITE_AUTHOR: "@Asara:devvul.com"
|
|
PHOTOPRISM_DEBUG: false
|
|
PHOTOPRISM_READONLY: false
|
|
PHOTOPRISM_DISABLE_WEBDAV: true
|
|
PHOTOPRISM_DISABLE_TENSORFLOW: true
|
|
|
|
persistence:
|
|
enabled: true
|
|
storagePath: &storagePath /photoprism/storage
|
|
originalsPath: &originalsPath /photoprism/originals
|
|
|
|
volumeMounts:
|
|
- name: photoprism
|
|
mountPath: *originalsPath
|
|
subPath: storage
|
|
- name: photoprism
|
|
subPath: originals
|
|
mountPath: *storagePath
|
|
volumes:
|
|
- name: photoprism
|
|
persistentVolumeClaim:
|
|
claimName: photoprism
|
|
volumeClaimTemplates:
|
|
- metadata:
|
|
name: photoprism
|
|
spec:
|
|
accessModes: [ "ReadWriteOnce" ]
|
|
storageClassName: "longhorn-retain"
|
|
resources:
|
|
requests:
|
|
storage: 20Gi
|