Adds peertube app.

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

View File

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