patch postgresql database not consuming storage.
This commit is contained in:
parent
c878526ea7
commit
49748226ae
|
@ -27,4 +27,4 @@ name: fireflyiii
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/firefly-iii/firefly-iii/
|
- https://github.com/firefly-iii/firefly-iii/
|
||||||
type: application
|
type: application
|
||||||
version: 5.0.0
|
version: 5.0.1
|
||||||
|
|
|
@ -41,6 +41,12 @@ postgresql:
|
||||||
postgresqlUsername: fireflyiii
|
postgresqlUsername: fireflyiii
|
||||||
postgresqlDatabase: fireflyiii
|
postgresqlDatabase: fireflyiii
|
||||||
existingSecret: dbcreds
|
existingSecret: dbcreds
|
||||||
|
persistence:
|
||||||
|
db:
|
||||||
|
storageClass: "SCALE-ZFS"
|
||||||
|
dbbackups:
|
||||||
|
storageClass: "SCALE-ZFS"
|
||||||
|
|
||||||
|
|
||||||
##
|
##
|
||||||
# Most other defaults are set in questions.yaml
|
# Most other defaults are set in questions.yaml
|
||||||
|
|
|
@ -7,7 +7,7 @@ dependencies:
|
||||||
- condition: postgresql.enabled
|
- condition: postgresql.enabled
|
||||||
name: postgresql
|
name: postgresql
|
||||||
repository: https://truecharts.org/
|
repository: https://truecharts.org/
|
||||||
version: 1.0.0
|
version: 1.0.1
|
||||||
- condition: redis.enabled
|
- condition: redis.enabled
|
||||||
name: redis
|
name: redis
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
|
@ -36,4 +36,4 @@ sources:
|
||||||
- https://github.com/nextcloud/docker
|
- https://github.com/nextcloud/docker
|
||||||
- https://github.com/nextcloud/helm
|
- https://github.com/nextcloud/helm
|
||||||
type: application
|
type: application
|
||||||
version: 2.0.0
|
version: 2.0.1
|
||||||
|
|
|
@ -158,6 +158,11 @@ postgresql:
|
||||||
postgresqlUsername: nextcloud
|
postgresqlUsername: nextcloud
|
||||||
postgresqlDatabase: nextcloud
|
postgresqlDatabase: nextcloud
|
||||||
existingSecret: dbcreds
|
existingSecret: dbcreds
|
||||||
|
persistence:
|
||||||
|
db:
|
||||||
|
storageClass: "SCALE-ZFS"
|
||||||
|
dbbackups:
|
||||||
|
storageClass: "SCALE-ZFS"
|
||||||
|
|
||||||
# Enabled redis
|
# Enabled redis
|
||||||
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/redis
|
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/redis
|
||||||
|
|
|
@ -184,14 +184,12 @@ cronjob:
|
||||||
successfulJobsHistoryLimit: 2
|
successfulJobsHistoryLimit: 2
|
||||||
|
|
||||||
# Enabled postgres
|
# Enabled postgres
|
||||||
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/postgresql
|
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: true
|
enabled: true
|
||||||
postgresqlUsername: nextcloud
|
postgresqlUsername: nextcloud
|
||||||
postgresqlDatabase: nextcloud
|
postgresqlDatabase: nextcloud
|
||||||
existingSecret: dbcreds
|
existingSecret: dbcreds
|
||||||
|
|
||||||
|
|
||||||
# Enabled redis
|
# Enabled redis
|
||||||
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/redis
|
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/redis
|
||||||
redis:
|
redis:
|
||||||
|
|
|
@ -31,4 +31,4 @@ name: vaultwarden
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/dani-garcia/vaultwarden
|
- https://github.com/dani-garcia/vaultwarden
|
||||||
type: application
|
type: application
|
||||||
version: 4.0.0
|
version: 4.0.1
|
||||||
|
|
|
@ -39,11 +39,15 @@ database:
|
||||||
|
|
||||||
# Enabled postgres
|
# Enabled postgres
|
||||||
postgresql:
|
postgresql:
|
||||||
|
|
||||||
enabled: true
|
enabled: true
|
||||||
postgresqlUsername: vaultwarden
|
postgresqlUsername: vaultwarden
|
||||||
postgresqlDatabase: vaultwarden
|
postgresqlDatabase: vaultwarden
|
||||||
existingSecret: dbcreds
|
existingSecret: dbcreds
|
||||||
|
persistence:
|
||||||
|
db:
|
||||||
|
storageClass: "SCALE-ZFS"
|
||||||
|
dbbackups:
|
||||||
|
storageClass: "SCALE-ZFS"
|
||||||
|
|
||||||
##
|
##
|
||||||
# Most other defaults are set in questions.yaml
|
# Most other defaults are set in questions.yaml
|
||||||
|
|
Loading…
Reference in New Issue