28 lines
864 B
YAML
28 lines
864 B
YAML
name: listmonk
|
|
is: listmonk
|
|
description: Listmonk is a standalone, self-hosted, newsletter and mailing list manager.
|
|
It is fast, feature-rich, and packed into a single binary.
|
|
version: 5.0.3
|
|
icon: https://listmonk.app/static/images/logo.svg
|
|
requires:
|
|
- name: postgres
|
|
defaultConfig:
|
|
namespace: listmonk
|
|
externalDnsDomain: '{{ .cloud.domain }}'
|
|
domain: listmonk.{{ .cloud.domain }}
|
|
rootUrl: https://listmonk.{{ .cloud.domain }}
|
|
tlsSecretName: wildcard-wild-cloud-tls
|
|
storage: 1Gi
|
|
dbHost: postgres.postgres.svc.cluster.local
|
|
dbPort: 5432
|
|
dbName: listmonk
|
|
dbUser: listmonk
|
|
dbSSLMode: disable
|
|
timezone: UTC
|
|
defaultSecrets:
|
|
- key: dbPassword
|
|
- key: dbUrl
|
|
default: 'postgres://{{ .app.dbUser }}:{{ .secrets.dbPassword }}@{{ .app.dbHost }}:{{ .app.dbPort }}/{{ .app.dbName }}?sslmode={{ .app.dbSSLMode }}'
|
|
requiredSecrets:
|
|
- postgres.password
|