diff --git a/charts/stable/ghost/Chart.yaml b/charts/stable/ghost/Chart.yaml index 22c73d9a..942114f9 100644 --- a/charts/stable/ghost/Chart.yaml +++ b/charts/stable/ghost/Chart.yaml @@ -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 diff --git a/charts/stable/ghost/README.md b/charts/stable/ghost/README.md index 0fc0f109..2b3e5caa 100644 --- a/charts/stable/ghost/README.md +++ b/charts/stable/ghost/README.md @@ -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 diff --git a/charts/stable/ghost/values.yaml b/charts/stable/ghost/values.yaml index fa9a08ef..e29fdbf3 100644 --- a/charts/stable/ghost/values.yaml +++ b/charts/stable/ghost/values.yaml @@ -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