35 lines
872 B
YAML
35 lines
872 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-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 }}'
|
|
domain: ghost.{{ .cloud.domain }}
|
|
tlsSecretName: wildcard-wild-cloud-tls
|
|
storage: 10Gi
|
|
adminUser: admin
|
|
adminEmail: '{{ .operator.email }}'
|
|
blogTitle: My Blog
|
|
db:
|
|
host: '{{ .apps.mysql.host }}'
|
|
port: '3306'
|
|
name: ghost
|
|
user: ghost
|
|
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
|