upgrade nextcloud and add external redis [ci skip]
This commit is contained in:
parent
1ace09f1ea
commit
19184ee22f
2 changed files with 11 additions and 3 deletions
|
|
@ -23,10 +23,18 @@ nextcloud:
|
||||||
# - name: loglevel
|
# - name: loglevel
|
||||||
# value: "0"
|
# value: "0"
|
||||||
|
|
||||||
externalDatabase:
|
# internalDatabase:
|
||||||
|
# enabled: false
|
||||||
|
|
||||||
|
externalRedis:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
host: redis.redis.svc.cluster.local
|
||||||
|
|
||||||
|
# Currently not in use; we use the nextcloud.db sqlite3
|
||||||
|
externalDatabase:
|
||||||
|
enabled: false
|
||||||
type: mysql
|
type: mysql
|
||||||
host: mysql.dbaas
|
host: mysql.dbaas.svc.cluster.local
|
||||||
user: nextcloud
|
user: nextcloud
|
||||||
password: ${db_password}
|
password: ${db_password}
|
||||||
databse: nextcloud
|
databse: nextcloud
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ resource "helm_release" "nextcloud" {
|
||||||
repository = "https://nextcloud.github.io/helm/"
|
repository = "https://nextcloud.github.io/helm/"
|
||||||
chart = "nextcloud"
|
chart = "nextcloud"
|
||||||
atomic = true
|
atomic = true
|
||||||
version = "8.0.2"
|
version = "8.8.1"
|
||||||
|
|
||||||
values = [templatefile("${path.module}/chart_values.yaml", { tls_secret_name = var.tls_secret_name, db_password = var.db_password })]
|
values = [templatefile("${path.module}/chart_values.yaml", { tls_secret_name = var.tls_secret_name, db_password = var.db_password })]
|
||||||
timeout = 6000
|
timeout = 6000
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue