54 lines
987 B
YAML
54 lines
987 B
YAML
#
|
|
# IMPORTANT NOTE
|
|
#
|
|
# This chart inherits from our common library chart. You can check the default values/options here:
|
|
# https://scm.docker.cabillot.eu/perso/helm-library-common
|
|
#
|
|
|
|
image:
|
|
repository: docker.io/bpatrik/pigallery2
|
|
tag: "latest-debian-bullseye"
|
|
pullPolicy: Always
|
|
|
|
env:
|
|
TZ: America/New_York
|
|
NODE_ENV: production
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
http:
|
|
port: 80
|
|
|
|
ingress:
|
|
main:
|
|
enabled: false
|
|
|
|
automountServiceAccountToken: false
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: /app/data/config
|
|
accessMode: ReadWriteOnce
|
|
size: 100Mi
|
|
db:
|
|
enabled: true
|
|
mountPath: /app/data/db
|
|
accessMode: ReadWriteOnce
|
|
size: 100Mi
|
|
tmp:
|
|
enabled: true
|
|
mountPath: /app/data/tmp
|
|
accessMode: ReadWriteOnce
|
|
size: 100Mi
|
|
images:
|
|
enabled: true
|
|
type: custom
|
|
volumeSpec:
|
|
nfs:
|
|
server: "odroidhc2.local"
|
|
path: "/mnt/photos_sanitized"
|
|
readOnly: true
|
|
mountPath: /app/data/images
|