Adds pretix app.

This commit is contained in:
2026-06-19 21:33:23 +00:00
parent cd37c07a33
commit 274d7a8fb9
11 changed files with 382 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
version: 2026.5.1-1
requires:
- name: postgres
- name: redis
- name: smtp
defaultConfig:
namespace: pretix
externalDnsDomain: '{{ .cloud.domain }}'
domain: pretix.{{ .cloud.domain }}
tlsSecretName: wildcard-wild-cloud-tls
storage: 2Gi
currency: EUR
timezone: UTC
db:
host: '{{ .apps.postgres.host }}'
port: '{{ .apps.postgres.port }}'
name: pretix
user: pretix
redis:
host: '{{ .apps.redis.host }}'
port: '6379'
smtp:
host: '{{ .apps.smtp.host }}'
port: '{{ .apps.smtp.port }}'
from: '{{ .apps.smtp.from }}'
user: '{{ .apps.smtp.user }}'
defaultSecrets:
- key: dbPassword
- key: djangoSecret
- key: smtpPassword
requiredSecrets:
- postgres.password
- redis.password