76 lines
1.6 KiB
YAML
76 lines
1.6 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@sha256:42
|
|
|
|
|
|
postgresqlImage:
|
|
repository: postgres
|
|
pullPolicy: IfNotPresent
|
|
tag: 13.4-alpine@sha256:42
|
|
|
|
initContainers:
|
|
init-postgresdb:
|
|
image: "{{ .Values.postgresqlImage.repository}}:{{ .Values.postgresqlImage.tag }}"
|
|
command:
|
|
- "sh"
|
|
- "-c"
|
|
- "until pg_isready -U authelia -h ${pghost} ; do sleep 2 ; done"
|
|
imagePullPolicy: IfNotPresent
|
|
env:
|
|
- name: pghost
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: plainhost
|
|
|
|
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: dbcreds
|
|
key: postgresql_host
|
|
DB_PASSWORD:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: postgresql-password
|
|
|
|
# Enabled postgres
|
|
postgresql:
|
|
enabled: true
|
|
postgresqlUsername: fireflyiii
|
|
postgresqlDatabase: fireflyiii
|
|
existingSecret: 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
|
|
##
|