71 lines
1.1 KiB
YAML
71 lines
1.1 KiB
YAML
# Default values for fireflyIII.
|
|
|
|
image:
|
|
repository: fireflyiii/core
|
|
pullPolicy: IfNotPresent
|
|
tag: version-5.5.12
|
|
|
|
strategy:
|
|
type: Recreate
|
|
|
|
podSecurityContext:
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
fsGroup: 0
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 8080
|
|
tcp:
|
|
enabled: true
|
|
type: ClusterIP
|
|
ports:
|
|
tcp:
|
|
enabled: true
|
|
port: 51080
|
|
protocol: TCP
|
|
|
|
probes:
|
|
liveness:
|
|
path: "/login"
|
|
|
|
readiness:
|
|
path: "/login"
|
|
|
|
startup:
|
|
path: "/login"
|
|
|
|
env:
|
|
DB_USERNAME: firefly
|
|
DB_DATABASE: firefly
|
|
DB_CONNECTION: pgsql
|
|
DB_PORT: 5432
|
|
APP_KEY: AGcfkCUS233ZWmBXztYbdyCs2u7kkz55
|
|
|
|
envValueFrom:
|
|
DB_HOST:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: postgresql_host
|
|
DB_PASSWORD:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: postgresql-password
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/var/www/html/storage/upload"
|
|
type: emptyDir
|
|
|
|
|
|
# Enabled postgres
|
|
postgresql:
|
|
enabled: true
|
|
postgresqlUsername: firefly
|
|
postgresqlDatabase: firefly
|
|
existingSecret: dbcreds
|