34 lines
956 B
YAML
34 lines
956 B
YAML
name: lemmy
|
|
is: lemmy
|
|
description: Lemmy is a selfhosted social link aggregation and discussion platform. It is an open source alternative to Reddit, designed for the fediverse.
|
|
version: 0.19.15-2
|
|
icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/lemmy.svg
|
|
requires:
|
|
- name: postgres
|
|
- name: smtp
|
|
defaultConfig:
|
|
namespace: lemmy
|
|
externalDnsDomain: lemmy.{{ .cloud.baseDomain }}
|
|
domain: lemmy.{{ .cloud.domain }}
|
|
tlsSecretName: wildcard-wild-cloud-tls
|
|
storage: 10Gi
|
|
pictrsStorage: 50Gi
|
|
db:
|
|
host: '{{ .apps.postgres.host }}'
|
|
port: '{{ .apps.postgres.port }}'
|
|
name: lemmy
|
|
user: lemmy
|
|
smtp:
|
|
host: '{{ .apps.smtp.host }}'
|
|
port: '{{ .apps.smtp.port }}'
|
|
user: '{{ .apps.smtp.user }}'
|
|
from: 'noreply@{{ .cloud.baseDomain }}'
|
|
tls: '{{ .apps.smtp.tls }}'
|
|
defaultSecrets:
|
|
- key: dbPassword
|
|
- key: adminPassword
|
|
- key: jwtSecret
|
|
- key: smtpPassword
|
|
requiredSecrets:
|
|
- postgres.password
|