feat(fireflyiii): enable redis (#1478)

* feat(fireflyiii): enable redis

* duh...

* actually enable redis

* bump minor

Co-authored-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
This commit is contained in:
Stavros Kois
2021-12-07 12:37:31 +01:00
committed by GitHub
co-authored by Kjeld Schouten-Lebbing
parent f6a07cac40
commit ff505946c0
2 changed files with 23 additions and 0 deletions
+19
View File
@@ -33,6 +33,12 @@ env:
DB_DATABASE: firefly
DB_CONNECTION: pgsql
DB_PORT: 5432
REDIS_DB: "0"
REDIS_CACHE_DB: "1"
CACHE_DRIVER: redis
SESSION_DRIVER: redis
REDIS_SCHEME: tcp
REDIS_PORT: 6379
envValueFrom:
DB_HOST:
@@ -43,6 +49,14 @@ envValueFrom:
secretKeyRef:
name: dbcreds
key: postgresql-password
REDIS_HOST:
secretKeyRef:
name: rediscreds
key: plainhost
REDIS_PASSWORD:
secretKeyRef:
name: rediscreds
key: redis-password
STATIC_CRON_TOKEN:
secretKeyRef:
name: fireflyiii-secrets
@@ -63,6 +77,11 @@ cronjob:
failedJobsHistoryLimit: 5
successfulJobsHistoryLimit: 2
# Enabled redis
redis:
enabled: true
existingSecret: "rediscreds"
# Enabled postgres
postgresql:
enabled: true