42 lines
1.0 KiB
YAML
42 lines
1.0 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: jc5x/firefly-iii
|
|
pullPolicy: IfNotPresent
|
|
tag: latest
|
|
|
|
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
|
|
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/postgresql
|
|
postgresql:
|
|
enabled: true
|
|
postgresqlUsername: fireflyiii
|
|
postgresqlDatabase: fireflyiii
|
|
existingSecret: dbcreds
|
|
persistence:
|
|
enabled: true
|
|
existingClaim: db
|
|
##
|
|
# Most other defaults are set in questions.yaml
|
|
# For other options please refer to the wiki, default_values.yaml or the common library chart
|
|
##
|