Adds outline app.

This commit is contained in:
2026-06-19 21:33:20 +00:00
parent b1295223b1
commit 424e57baec
10 changed files with 333 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
version: 1.8.1-1
requires:
- name: postgres
- name: redis
- name: smtp
defaultConfig:
namespace: outline
externalDnsDomain: '{{ .cloud.domain }}'
domain: outline.{{ .cloud.domain }}
tlsSecretName: wildcard-wild-cloud-tls
storage: 2Gi
db:
host: '{{ .apps.postgres.host }}'
port: '{{ .apps.postgres.port }}'
name: outline
user: outline
redis:
host: '{{ .apps.redis.host }}'
smtp:
host: '{{ .apps.smtp.host }}'
port: '{{ .apps.smtp.port }}'
from: '{{ .apps.smtp.from }}'
user: '{{ .apps.smtp.user }}'
defaultSecrets:
- key: utilsSecret
- key: secretKey
default: '{{ crypto.SHA256 .secrets.utilsSecret }}'
- key: dbPassword
- key: dbUrl
default: 'postgres://{{ .app.db.user }}:{{ .secrets.dbPassword }}@{{ .app.db.host }}:{{ .app.db.port }}/{{ .app.db.name }}?sslmode=disable'
- key: smtpPassword
requiredSecrets:
- postgres.password
- redis.password