From 808d13904bce9b5ab5aff3de29953ea94e39692e Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Wed, 23 Aug 2017 11:55:04 +0000 Subject: [PATCH] Replace user by user@example.com in Ghost --- stable/ghost/README.md | 4 ++-- stable/ghost/values.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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