27 lines
629 B
YAML
27 lines
629 B
YAML
version: 3.6.0-2
|
|
requires:
|
|
- name: postgres
|
|
- name: redis
|
|
defaultConfig:
|
|
namespace: formbricks
|
|
domain: formbricks.{{ .cloud.domain }}
|
|
storage: 2Gi
|
|
db:
|
|
host: '{{ .apps.postgres.host }}'
|
|
port: '{{ .apps.postgres.port }}'
|
|
name: formbricks
|
|
user: formbricks
|
|
redis:
|
|
host: '{{ .apps.redis.host }}'
|
|
defaultSecrets:
|
|
- key: dbPassword
|
|
- key: dbUrl
|
|
default: postgresql://{{ .app.db.user }}:{{ .secrets.dbPassword }}@{{ .app.db.host
|
|
}}:{{ .app.db.port }}/{{ .app.db.name }}?sslmode=disable
|
|
- key: nextauthSecret
|
|
- key: encryptionKey
|
|
- key: cronSecret
|
|
requiredSecrets:
|
|
- postgres.password
|
|
- redis.password
|