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>
37 lines
948 B
YAML
37 lines
948 B
YAML
name: ghost
|
|
is: ghost
|
|
description: Ghost is a powerful app for new-media creators to publish, share, and
|
|
grow a business around their content.
|
|
version: 5.118.1
|
|
icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/ghost.png
|
|
requires:
|
|
- name: mysql
|
|
- name: smtp
|
|
defaultConfig:
|
|
namespace: ghost
|
|
externalDnsDomain: '{{ .cloud.domain }}'
|
|
image: docker.io/bitnami/ghost:5.118.1-debian-12-r0
|
|
domain: ghost.{{ .cloud.domain }}
|
|
tlsSecretName: wildcard-wild-cloud-tls
|
|
port: 2368
|
|
storage: 10Gi
|
|
dbHost: mysql.mysql.svc.cluster.local
|
|
dbPort: 3306
|
|
dbName: ghost
|
|
dbUser: ghost
|
|
adminUser: admin
|
|
adminEmail: {{ .operator.email }}
|
|
blogTitle: My Blog
|
|
timezone: UTC
|
|
smtp:
|
|
host: '{{ .apps.smtp.host }}'
|
|
port: '{{ .apps.smtp.port }}'
|
|
from: '{{ .apps.smtp.from }}'
|
|
user: '{{ .apps.smtp.user }}'
|
|
defaultSecrets:
|
|
- key: adminPassword
|
|
- key: dbPassword
|
|
- key: smtpPassword
|
|
requiredSecrets:
|
|
- mysql.rootPassword
|