* Solidify fireflyiii database system * bump major as it's breaking * do the same with vaultwarden * whoopsies * hmm * revert and clean * another breaking change for vaulwarden
55 lines
1.2 KiB
YAML
55 lines
1.2 KiB
YAML
##
|
|
# This file contains Values.yaml content that gets added to the output of questions.yaml
|
|
# It's ONLY meant for content that the user is NOT expected to change.
|
|
# Example: Everything under "image" is not included in questions.yaml but is included here.
|
|
##
|
|
|
|
image:
|
|
repository: fireflyiii/core
|
|
pullPolicy: IfNotPresent
|
|
tag: version-5.5.12
|
|
|
|
probes:
|
|
liveness:
|
|
path: "/login"
|
|
|
|
readiness:
|
|
path: "/login"
|
|
|
|
startup:
|
|
path: "/login"
|
|
|
|
env:
|
|
DB_USERNAME: fireflyiii
|
|
DB_DATABASE: fireflyiii
|
|
DB_CONNECTION: pgsql
|
|
DB_PORT: 5432
|
|
|
|
envValueFrom:
|
|
DB_HOST:
|
|
secretKeyRef:
|
|
name: "{{ .Release.Name }}-dbcreds"
|
|
key: postgresql_host
|
|
DB_PASSWORD:
|
|
secretKeyRef:
|
|
name: "{{ .Release.Name }}-dbcreds"
|
|
key: postgresql-password
|
|
|
|
# Enabled postgres
|
|
postgresql:
|
|
enabled: true
|
|
postgresqlUsername: fireflyiii
|
|
postgresqlDatabase: fireflyiii
|
|
existingSecret: "{{ .Release.Name }}-dbcreds"
|
|
persistence:
|
|
db:
|
|
storageClass: "SCALE-ZFS"
|
|
dbbackups:
|
|
storageClass: "SCALE-ZFS"
|
|
|
|
|
|
##
|
|
# Most other defaults are set in questions.yaml
|
|
# For other options please refer to the wiki, default_values.yaml or the common library chart
|
|
##
|