[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:
Skyler Mäntysaari 2022-01-24 12:36:19 +02:00 committed by GitHub
parent ae9e3c02a1
commit 6dd5f3ff0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 10 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 4.27.2 appVersion: 4.27.2
description: Ghost is a blogging and publishing software description: Ghost is a blogging and publishing software
name: ghost name: ghost
version: 1.1.1 version: 1.1.2
kubeVersion: ">=1.19.0-0" kubeVersion: ">=1.19.0-0"
keywords: keywords:
- ghost - ghost
@ -26,7 +26,4 @@ dependencies:
annotations: annotations:
artifacthub.io/changes: | artifacthub.io/changes: |
- kind: fixed - kind: fixed
description: Fixed PVC creation. description: Fixed database host to match mariadb-svc
links:
- name: GitHub Issue
url: https://github.com/k8s-at-home/charts/issues/1358

View File

@ -1,6 +1,6 @@
# ghost # 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 Ghost is a blogging and publishing software
@ -80,7 +80,7 @@ N/A
| env.NODE_ENV | string | `"production"` | | | env.NODE_ENV | string | `"production"` | |
| env.database__client | string | `"mysql"` | | | env.database__client | string | `"mysql"` | |
| env.database__connection__database | string | `"ghost"` | | | 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__password | string | `"ghost"` | |
| env.database__connection__user | string | `"ghost"` | | | env.database__connection__user | string | `"ghost"` | |
| env.url | string | `"http://some-ghost.example.com"` | | | env.url | string | `"http://some-ghost.example.com"` | |
@ -100,7 +100,7 @@ N/A
## Changelog ## Changelog
### Version 1.1.1 ### Version 1.1.2
#### Added #### Added
@ -112,7 +112,7 @@ N/A
#### Fixed #### Fixed
* Fixed PVC creation. * Fixed database host to match mariadb-svc
### Older versions ### Older versions

View File

@ -17,7 +17,7 @@ image:
env: env:
url: "http://some-ghost.example.com" url: "http://some-ghost.example.com"
database__client: mysql database__client: mysql
database__connection__host: mariadb database__connection__host: ghost-mariadb
database__connection__user: ghost database__connection__user: ghost
database__connection__password: ghost database__connection__password: ghost
database__connection__database: ghost database__connection__database: ghost