73 lines
2.0 KiB
YAML
73 lines
2.0 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: 20211018@sha256:f61fb623187faa33d1e3f4d86e384cdf401442d4ba6bec96897f42fa4fbb84b4
|
|
# -- image pull policy
|
|
pullPolicy: IfNotPresent
|
|
|
|
securityContext:
|
|
readOnlyRootFilesystem: false
|
|
|
|
# -- 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 originals path
|
|
PHOTOPRISM_ORIGINALS_PATH: /photoprism/originals
|
|
# -- Photoprism import path
|
|
PHOTOPRISM_IMPORT_PATH: /photoprism/import
|
|
# -- Photoprism temp path
|
|
PHOTOPRISM_TEMP_PATH: /photoprism/temp
|
|
# -- Photoprism storage path
|
|
PHOTOPRISM_STORAGE_PATH: /assets/storage
|
|
# -- Photoprism sidecar path
|
|
PHOTOPRISM_SIDECAR_PATH: /assets/sidecar
|
|
# -- Photoprism cache path
|
|
PHOTOPRISM_CACHE_PATH: /assets/cache
|
|
# -- Photoprism config path
|
|
PHOTOPRISM_CONFIG_PATH: /assets/config
|
|
# -- Photoprism backup path
|
|
PROTOPRISM_BACKUP_PATH: /assets/backup
|
|
# -- 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:
|
|
storage:
|
|
enabled: true
|
|
type: pvc
|
|
accessMode: ReadWriteOnce
|
|
size: "100Gi"
|
|
mountPath: /assets
|
|
|
|
temp:
|
|
enabled: true
|
|
mountPath: /photoprism/temp
|
|
type: emptyDir
|