version: 0.31.0-4 requires: - name: postgres - name: redis - name: smtp defaultConfig: namespace: decidim storage: 2Gi systemAdminEmail: '{{ .operator.email }}' siteName: Decidim domain: decidim.{{ .cloud.domain }} 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: dbPassword - key: dbUrl default: postgres://{{ .app.db.user }}:{{ .secrets.dbPassword }}@{{ .app.db.host }}:{{ .app.db.port }}/{{ .app.db.name }}?sslmode=disable requiredSecrets: - postgres.password - redis.password - smtp.password