Files
truecharts/charts/stable/photoprism/values.yaml
T
876757f360 chore(deps): update container image docker.io/photoprism/photoprism to v20210925 (#1045)
* chore(deps): update container image docker.io/photoprism/photoprism to v20210925

* Commit bumped App Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: TrueCharts-Bot <bot@truecharts.org>
2021-09-27 21:52:13 +02:00

57 lines
1.5 KiB
YAML

#
# 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
repository: docker.io/photoprism/photoprism
# -- image tag
tag: 20210925@sha256:238e6955804d82097d08f0e4318835721f46bd844f9065a38aa7d112ab72906e
# -- 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"