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:
co-authored by
Kjeld Schouten-Lebbing
parent
f6a07cac40
commit
ff505946c0
@@ -8,6 +8,10 @@ dependencies:
|
|||||||
name: postgresql
|
name: postgresql
|
||||||
repository: https://truecharts.org/
|
repository: https://truecharts.org/
|
||||||
version: 6.0.22
|
version: 6.0.22
|
||||||
|
- condition: redis.enabled
|
||||||
|
name: redis
|
||||||
|
repository: https://truecharts.org
|
||||||
|
version: 1.0.27
|
||||||
deprecated: false
|
deprecated: false
|
||||||
description: A free and open source personal finance manager
|
description: A free and open source personal finance manager
|
||||||
home: https://github.com/firefly-iii/firefly-iii/
|
home: https://github.com/firefly-iii/firefly-iii/
|
||||||
|
|||||||
@@ -33,6 +33,12 @@ env:
|
|||||||
DB_DATABASE: firefly
|
DB_DATABASE: firefly
|
||||||
DB_CONNECTION: pgsql
|
DB_CONNECTION: pgsql
|
||||||
DB_PORT: 5432
|
DB_PORT: 5432
|
||||||
|
REDIS_DB: "0"
|
||||||
|
REDIS_CACHE_DB: "1"
|
||||||
|
CACHE_DRIVER: redis
|
||||||
|
SESSION_DRIVER: redis
|
||||||
|
REDIS_SCHEME: tcp
|
||||||
|
REDIS_PORT: 6379
|
||||||
|
|
||||||
envValueFrom:
|
envValueFrom:
|
||||||
DB_HOST:
|
DB_HOST:
|
||||||
@@ -43,6 +49,14 @@ envValueFrom:
|
|||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: dbcreds
|
name: dbcreds
|
||||||
key: postgresql-password
|
key: postgresql-password
|
||||||
|
REDIS_HOST:
|
||||||
|
secretKeyRef:
|
||||||
|
name: rediscreds
|
||||||
|
key: plainhost
|
||||||
|
REDIS_PASSWORD:
|
||||||
|
secretKeyRef:
|
||||||
|
name: rediscreds
|
||||||
|
key: redis-password
|
||||||
STATIC_CRON_TOKEN:
|
STATIC_CRON_TOKEN:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: fireflyiii-secrets
|
name: fireflyiii-secrets
|
||||||
@@ -63,6 +77,11 @@ cronjob:
|
|||||||
failedJobsHistoryLimit: 5
|
failedJobsHistoryLimit: 5
|
||||||
successfulJobsHistoryLimit: 2
|
successfulJobsHistoryLimit: 2
|
||||||
|
|
||||||
|
# Enabled redis
|
||||||
|
redis:
|
||||||
|
enabled: true
|
||||||
|
existingSecret: "rediscreds"
|
||||||
|
|
||||||
# Enabled postgres
|
# Enabled postgres
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|||||||
Reference in New Issue
Block a user