31 lines
617 B
YAML
31 lines
617 B
YAML
version: 3.3.12-2
|
|
requires:
|
|
- name: postgres
|
|
- name: redis
|
|
- name: smtp
|
|
defaultConfig:
|
|
namespace: indico
|
|
domain: indico.{{ .cloud.domain }}
|
|
storage: 2Gi
|
|
timezone: UTC
|
|
db:
|
|
host: '{{ .apps.postgres.host }}'
|
|
port: '{{ .apps.postgres.port }}'
|
|
name: indico
|
|
user: indico
|
|
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: secretKey
|
|
requiredSecrets:
|
|
- postgres.password
|
|
- redis.password
|
|
- smtp.password
|