Files
k8scd/ghost-blog/ghost-config-es.yaml
T
Ruben Hensen 59441d8286 Add sync wave
2025-03-26 12:36:03 +01:00

67 lines
1.7 KiB
YAML

apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
name: ghost-config-prod
namespace: ghost-blog
annotations:
argocd.argoproj.io/sync-wave: "4"
spec:
refreshInterval: "15m"
secretStoreRef:
name: vault-backend
kind: ClusterSecretStore
target:
name: ghost-config-prod
creationPolicy: Owner
data:
- secretKey: config.production.json
remoteRef:
key: kv/ghost-blog/config
template:
engine: gotmpl
data: |
{
"url": "https://blog.hensen.io",
"admin": {
"url": "https://blog.hensen.io"
},
"server": {
"port": 2368,
"host": "0.0.0.0"
},
"mail": {
"transport": "SMTP",
"from": "{{ .email_from }}",
"options": {
"service": "{{ .email_service }}",
"host": "{{ .email_host }}",
"port": {{ .email_port }},
"secure": {{ .email_secure }},
"auth": {
"user": "{{ .email_user }}",
"pass": "{{ .email_password }}"
}
}
},
"logging": {
"transports": [
"stdout"
]
},
"database": {
"client": "mysql",
"connection":
{
"host": "ghost-mysql-service",
"user": "{{ .db_user }}",
"password": "{{ .db_password }}",
"database": "{{ .db_name }}",
"port": "3306"
}
},
"process": "local",
"paths": {
"contentPath": "/home/nonroot/app/ghost/content"
}
}