From 81bc2ca3f3d9243351c75a44be2e2f83f9b0be66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Rodr=C3=ADguez=20Hern=C3=A1ndez?= Date: Wed, 23 Aug 2017 14:41:18 +0200 Subject: [PATCH] Replace user by user@example.com in Ghost (#1820) --- stable/ghost/Chart.yaml | 2 +- stable/ghost/README.md | 4 ++-- stable/ghost/values.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/stable/ghost/Chart.yaml b/stable/ghost/Chart.yaml index f8ee2b44ab..07779163f5 100644 --- a/stable/ghost/Chart.yaml +++ b/stable/ghost/Chart.yaml @@ -1,5 +1,5 @@ name: ghost -version: 0.4.14 +version: 0.4.15 appVersion: 0.11.10 description: A simple, powerful publishing platform that allows you to share your stories with the world keywords: diff --git a/stable/ghost/README.md b/stable/ghost/README.md index c3954fd146..9cabd2e1b5 100644 --- a/stable/ghost/README.md +++ b/stable/ghost/README.md @@ -52,14 +52,14 @@ The following tables lists the configurable parameters of the Ghost chart and th | `ghostHost` | Ghost host to create application URLs | `nil` | | `ghostPort` | Ghost port to create application URLs along with host | `80` | | `ghostLoadBalancerIP` | `loadBalancerIP` for the Ghost Service | `nil` | -| `ghostUsername` | User of the application | `user` | +| `ghostUsername` | User of the application | `user@example.com` | | `ghostPassword` | Application password | Randomly generated | | `ghostEmail` | Admin email | `user@example.com` | | `ghostBlogTitle` | Ghost Blog name | `User's Blog` | | `mariadb.mariadbRootPassword` | MariaDB admin password | `nil` | | `serviceType` | Kubernetes Service type | `LoadBalancer` | | `persistence.enabled` | Enable persistence using PVC | `true` | -| `persistence.storageClass` | PVC Storage Class for Ghost volume | `nil` (uses alpha storage annotation) | +| `persistence.storageClass` | PVC Storage Class for Ghost volume | `nil` (uses alpha storage annotation) | | `persistence.accessMode` | PVC Access Mode for Ghost volume | `ReadWriteOnce` | | `persistence.size` | PVC Storage Request for Ghost volume | `8Gi` | | `resources` | CPU/Memory resource requests/limits | Memory: `512Mi`, CPU: `300m` | diff --git a/stable/ghost/values.yaml b/stable/ghost/values.yaml index 52c70d3f7e..ec3c7f4686 100644 --- a/stable/ghost/values.yaml +++ b/stable/ghost/values.yaml @@ -35,7 +35,7 @@ ghostPort: 80 ## User of the application ## ref: https://github.com/bitnami/bitnami-docker-ghost#configuration ## -ghostUsername: user +ghostUsername: user@example.com ## Application password ## Defaults to a random 10-character alphanumeric string if not set