From 21263383dee920cfee09297787eda7e4a3af6e57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20=C5=9Awi=C4=99cicki?= Date: Wed, 13 Jun 2018 16:56:28 +0200 Subject: [PATCH] [stable/mariadb] Fix configurable parameters (#6092) * [stable/mariadb] Fix configurable parameters * [stable/mariadb] Bump chart version --- stable/mariadb/Chart.yaml | 2 +- stable/mariadb/README.md | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/stable/mariadb/Chart.yaml b/stable/mariadb/Chart.yaml index d8dd57136d..cde5baa296 100644 --- a/stable/mariadb/Chart.yaml +++ b/stable/mariadb/Chart.yaml @@ -1,5 +1,5 @@ name: mariadb -version: 4.2.2 +version: 4.2.3 appVersion: 10.1.33 description: Fast, reliable, scalable, and easy to use open-source relational database system. MariaDB Server is intended for mission-critical, heavy-load production systems as well as for embedding into mass-deployed software. Highly available MariaDB cluster. keywords: diff --git a/stable/mariadb/README.md b/stable/mariadb/README.md index 687c03bcfa..cab0ee34ec 100644 --- a/stable/mariadb/README.md +++ b/stable/mariadb/README.md @@ -53,13 +53,14 @@ The following table lists the configurable parameters of the MariaDB chart and t | `image.pullPolicy` | MariaDB image pull policy | `Always` if `imageTag` is `latest`, else `IfNotPresent` | | `image.pullSecrets` | Specify image pull secrets | `nil` (does not add image pull secrets to deployed pods) | | `service.type` | Kubernetes service type | `ClusterIP` | -| `service.port` | MySQL service port | `3306` | -| `root.password` | Password for the `root` user | _random 10 character alphanumeric string_ | +| `service.port` | MySQL service port | `3306` | +| `rootUser.password` | Password for the `root` user | _random 10 character alphanumeric string_ | +| `rootUser.forcePassword` | Force users to specify a password | `false` | | `db.user` | Username of new user to create | `nil` | | `db.password` | Password for the new user | _random 10 character alphanumeric string if `db.user` is defined_ | | `db.name` | Name for new database to create | `my_database` | -| `replication.enabled` | MariaDB replication enabled | `true` | -| `replication.user` | MariaDB replication user | `replicator` | +| `replication.enabled` | MariaDB replication enabled | `true` | +| `replication.user` | MariaDB replication user | `replicator` | | `replication.password` | MariaDB replication user password | _random 10 character alphanumeric string_ | | `master.antiAffinity` | Master pod anti-affinity policy | `soft` | | `master.persistence.enabled` | Enable persistence using a `PersistentVolumeClaim` | `true` |