Convert all 15 cluster services from embedded API format to wild-directory packages using the unified manifest format: - metallb, traefik, cert-manager, longhorn, snapshot-controller - nfs, smtp, coredns, node-feature-discovery, nvidia-device-plugin - externaldns, docker-registry, headlamp, crowdsec, utils Changes: - wild-manifest.yaml → manifest.yaml with is, defaultConfig, requires - Eliminated configReferences and serviceConfig fields - Flattened kustomize.template/ to package root - Template vars use flat defaultConfig keys - install.sh paths updated for apps/ layout - Updated 9 app manifests: cloud.smtp.* → apps.smtp.* with requires - Removed dead install: true field from 6 app manifests Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
43 lines
1.1 KiB
YAML
43 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
|
|
- name: smtp
|
|
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: "{{ .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
|