42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
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
|
|
icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/lemmy.svg
|
|
requires:
|
|
- name: postgres
|
|
defaultConfig:
|
|
namespace: lemmy
|
|
backendImage: dessalines/lemmy:0.19.15
|
|
uiImage: dessalines/lemmy-ui:0.19.15
|
|
pictrsImage: asonix/pictrs:0.5.5
|
|
backendPort: 8536
|
|
uiPort: 1234
|
|
pictrsPort: 8080
|
|
backendReplicas: 1
|
|
uiReplicas: 1
|
|
pictrsReplicas: 1
|
|
storage: 10Gi
|
|
pictrsStorage: 50Gi
|
|
timezone: UTC
|
|
domain: lemmy.{{ .cloud.domain }}
|
|
externalDnsDomain: lemmy.{{ .cloud.baseDomain }}
|
|
tlsSecretName: lemmy-tls
|
|
dbName: lemmy
|
|
dbUser: lemmy
|
|
dbHost: postgres.postgres.svc.cluster.local
|
|
dbPort: 5432
|
|
smtp:
|
|
host: "{{ .cloud.smtp.host }}"
|
|
port: "{{ .cloud.smtp.port }}"
|
|
user: "{{ .cloud.smtp.user }}"
|
|
from: "noreply@{{ .cloud.baseDomain }}"
|
|
tls: "{{ .cloud.smtp.tls }}"
|
|
defaultSecrets:
|
|
- key: dbPassword
|
|
- key: adminPassword
|
|
- key: jwtSecret
|
|
- key: smtpPassword
|
|
requiredSecrets:
|
|
- postgres.password
|