TrueChartsClone/charts/stable/photoprism/values.yaml

57 lines
1.5 KiB
YAML
Raw Normal View History

#
# IMPORTANT NOTE
#
# This chart inherits from our common library chart. You can check the default values/options here:
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
#
image:
# -- image repository
2021-09-11 11:52:00 +00:00
repository: docker.io/photoprism/photoprism
# -- image tag
tag: 20211002@sha256:286aa5b95e7ff212f025923c75f8a46f0cc7a4754e7f65185e3116983264f1c2
# -- image pull policy
pullPolicy: IfNotPresent
# -- environment variables. See [image docs](https://docs.photoprism.org/getting-started/config-options/) for more details.
# @default -- See below
env:
# -- Set the container timezone
TZ: UTC
# -- Photoprism storage path
PHOTOPRISM_STORAGE_PATH: /photoprism/storage
# -- Photoprism originals path
PHOTOPRISM_ORIGINALS_PATH: /photoprism/originals
# -- Initial admin password. **BE SURE TO CHANGE THIS!**
PHOTOPRISM_ADMIN_PASSWORD: "please-change"
# -- Disable authentication / password protection
PHOTOPRISM_PUBLIC: "false"
# -- Sets UID Photoprism runs under.
UID: # 1000
# -- Sets GID Photoprism runs under.
GID: # 1000
# -- Sets UMASK.
UMASK: # 0000
# -- Configures service settings for the chart.
# @default -- See values.yaml
service:
main:
ports:
main:
port: 2342
# -- Configure persistence settings for the chart under this key.
# @default -- See values.yaml
persistence:
config:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: /photoprism/storage
originals:
enabled: false
mountPath: "/photoprism/originals"