36 lines
939 B
YAML
36 lines
939 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
|
|
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: '{{ .cloud.smtp.host }}'
|
|
port: '{{ .cloud.smtp.port }}'
|
|
from: '{{ .cloud.smtp.from }}'
|
|
user: '{{ .cloud.smtp.user }}'
|
|
defaultSecrets:
|
|
- key: adminPassword
|
|
- key: dbPassword
|
|
- key: smtpPassword
|
|
requiredSecrets:
|
|
- mysql.rootPassword
|