28 lines
731 B
YAML
28 lines
731 B
YAML
version: 3.6.0-1
|
|
requires:
|
|
- name: postgres
|
|
- name: redis
|
|
defaultConfig:
|
|
namespace: formbricks
|
|
externalDnsDomain: "{{ .cloud.domain }}"
|
|
domain: formbricks.{{ .cloud.domain }}
|
|
tlsSecretName: wildcard-wild-cloud-tls
|
|
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
|