mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +00:00
[ghost] Fix database string to match generated svc (#1385)
Signed-off-by: Skyler Mäntysaari <samip5@users.noreply.github.com>
This commit is contained in:
parent
ae9e3c02a1
commit
6dd5f3ff0b
@ -2,7 +2,7 @@ apiVersion: v2
|
||||
appVersion: 4.27.2
|
||||
description: Ghost is a blogging and publishing software
|
||||
name: ghost
|
||||
version: 1.1.1
|
||||
version: 1.1.2
|
||||
kubeVersion: ">=1.19.0-0"
|
||||
keywords:
|
||||
- ghost
|
||||
@ -26,7 +26,4 @@ dependencies:
|
||||
annotations:
|
||||
artifacthub.io/changes: |
|
||||
- kind: fixed
|
||||
description: Fixed PVC creation.
|
||||
links:
|
||||
- name: GitHub Issue
|
||||
url: https://github.com/k8s-at-home/charts/issues/1358
|
||||
description: Fixed database host to match mariadb-svc
|
||||
|
@ -1,6 +1,6 @@
|
||||
# ghost
|
||||
|
||||
![Version: 1.1.1](https://img.shields.io/badge/Version-1.1.1-informational?style=flat-square) ![AppVersion: 4.27.2](https://img.shields.io/badge/AppVersion-4.27.2-informational?style=flat-square)
|
||||
![Version: 1.1.2](https://img.shields.io/badge/Version-1.1.2-informational?style=flat-square) ![AppVersion: 4.27.2](https://img.shields.io/badge/AppVersion-4.27.2-informational?style=flat-square)
|
||||
|
||||
Ghost is a blogging and publishing software
|
||||
|
||||
@ -80,7 +80,7 @@ N/A
|
||||
| env.NODE_ENV | string | `"production"` | |
|
||||
| env.database__client | string | `"mysql"` | |
|
||||
| env.database__connection__database | string | `"ghost"` | |
|
||||
| env.database__connection__host | string | `"mariadb"` | |
|
||||
| env.database__connection__host | string | `"ghost-mariadb"` | |
|
||||
| env.database__connection__password | string | `"ghost"` | |
|
||||
| env.database__connection__user | string | `"ghost"` | |
|
||||
| env.url | string | `"http://some-ghost.example.com"` | |
|
||||
@ -100,7 +100,7 @@ N/A
|
||||
|
||||
## Changelog
|
||||
|
||||
### Version 1.1.1
|
||||
### Version 1.1.2
|
||||
|
||||
#### Added
|
||||
|
||||
@ -112,7 +112,7 @@ N/A
|
||||
|
||||
#### Fixed
|
||||
|
||||
* Fixed PVC creation.
|
||||
* Fixed database host to match mariadb-svc
|
||||
|
||||
### Older versions
|
||||
|
||||
|
@ -17,7 +17,7 @@ image:
|
||||
env:
|
||||
url: "http://some-ghost.example.com"
|
||||
database__client: mysql
|
||||
database__connection__host: mariadb
|
||||
database__connection__host: ghost-mariadb
|
||||
database__connection__user: ghost
|
||||
database__connection__password: ghost
|
||||
database__connection__database: ghost
|
||||
|
Loading…
Reference in New Issue
Block a user