46 lines
1.4 KiB
YAML
46 lines
1.4 KiB
YAML
name: decidim
|
|
is: decidim
|
|
description: Decidim is a participatory democracy framework for cities and organizations. Built in Ruby on Rails, it enables citizen participation through proposals, debates, and voting. Includes Sidekiq for background job processing.
|
|
version: 0.31.0-1
|
|
icon: https://raw.githubusercontent.com/decidim/decidim/develop/logo.svg
|
|
requires:
|
|
- name: postgres
|
|
installed_as: postgres
|
|
- name: redis
|
|
installed_as: redis
|
|
- name: smtp
|
|
defaultConfig:
|
|
namespace: decidim
|
|
externalDnsDomain: '{{ .cloud.domain }}'
|
|
storage: 20Gi
|
|
systemAdminEmail: '{{ .operator.email }}'
|
|
siteName: 'Decidim'
|
|
domain: decidim.{{ .cloud.domain }}
|
|
tlsSecretName: wildcard-wild-cloud-tls
|
|
db:
|
|
host: '{{ .apps.postgres.host }}'
|
|
port: '{{ .apps.postgres.port }}'
|
|
name: decidim
|
|
user: decidim
|
|
redis:
|
|
host: '{{ .apps.redis.host }}'
|
|
smtp:
|
|
enabled: true
|
|
host: '{{ .apps.smtp.host }}'
|
|
port: '{{ .apps.smtp.port }}'
|
|
user: '{{ .apps.smtp.user }}'
|
|
from: '{{ .apps.smtp.from }}'
|
|
tls: '{{ .apps.smtp.tls }}'
|
|
startTls: '{{ .apps.smtp.startTls }}'
|
|
defaultSecrets:
|
|
- key: systemAdminPassword
|
|
- key: secretKeyBase
|
|
default: "{{ random.AlphaNum 128 }}"
|
|
- key: smtpPassword
|
|
- key: dbPassword
|
|
- key: dbUrl
|
|
default: "postgres://{{ .app.db.user }}:{{ .secrets.dbPassword }}@{{ .app.db.host }}:{{ .app.db.port }}/{{ .app.db.name }}"
|
|
requiredSecrets:
|
|
- postgres.password
|
|
- redis.password
|