Adds nextcloud app.

This commit is contained in:
2026-06-19 21:33:17 +00:00
parent 5e98b3fce6
commit 110eca06ce
10 changed files with 303 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
version: 34.0.0-1
requires:
- name: postgres
- name: redis
defaultConfig:
namespace: nextcloud
externalDnsDomain: '{{ .cloud.domain }}'
domain: nextcloud.{{ .cloud.domain }}
tlsSecretName: wildcard-wild-cloud-tls
storage: 5Gi
adminUser: admin
db:
host: '{{ .apps.postgres.host }}'
port: '{{ .apps.postgres.port }}'
name: nextcloud
user: nextcloud
redis:
host: '{{ .apps.redis.host }}'
defaultSecrets:
- key: adminPassword
- key: dbPassword
- key: dbUrl
default: 'postgresql://{{ .app.db.user }}:{{ .secrets.dbPassword }}@{{ .app.db.host }}:{{ .app.db.port }}/{{ .app.db.name }}?sslmode=disable'
requiredSecrets:
- postgres.password
- redis.password