From c24793d146d52ec027498e00a08e64554d20cbdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Rodr=C3=ADguez=20Hern=C3=A1ndez?= Date: Mon, 17 Dec 2018 18:46:57 +0100 Subject: [PATCH] [stable/redis] Fix typo in README (#10074) Signed-off-by: Carlos Rodriguez Hernandez --- stable/redis/Chart.yaml | 2 +- stable/redis/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stable/redis/Chart.yaml b/stable/redis/Chart.yaml index 79ca665383..e8ed5acb06 100644 --- a/stable/redis/Chart.yaml +++ b/stable/redis/Chart.yaml @@ -1,5 +1,5 @@ name: redis -version: 5.1.2 +version: 5.1.3 appVersion: 4.0.12 description: Open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets. keywords: diff --git a/stable/redis/README.md b/stable/redis/README.md index fdbbd5500e..340c49f528 100644 --- a/stable/redis/README.md +++ b/stable/redis/README.md @@ -137,7 +137,7 @@ The following table lists the configurable parameters of the Redis chart and the | `master.podAnnotations` | Additional annotations for Redis master pod | {} | | `master.port` | Redis master port | `6379` | | `master.command` | Redis master entrypoint array. The docker image's ENTRYPOINT is used if this is not provided. | [] | -| `master.disableCommands` | Comma-separated list of Redis commands to disable (master) | `FLUSHDB,FLUSHALL` | +| `master.disableCommands` | Array of Redis commands to disable (master) | `["FLUSHDB", "FLUSHALL"]` | | `master.extraFlags` | Redis master additional command line flags | [] | | `master.nodeSelector` | Redis master Node labels for pod assignment | {"beta.kubernetes.io/arch": "amd64"} | | `master.tolerations` | Toleration labels for Redis master pod assignment | [] | @@ -174,7 +174,7 @@ The following table lists the configurable parameters of the Redis chart and the | `slave.service.loadBalancerIP` | LoadBalancerIP if Redis slave service type is `LoadBalancer` | `nil` | | `slave.port` | Redis slave port | `master.port` | | `slave.command` | Redis slave entrypoint array. The docker image's ENTRYPOINT is used if this is not provided. | `master.command` | -| `slave.disableCommands` | Comma-separated list of Redis commands to disable (slave) | `master.disableCommands` | +| `slave.disableCommands` | Array of Redis commands to disable (slave) | `master.disableCommands` | | `slave.extraFlags` | Redis slave additional command line flags | `master.extraFlags` | | `slave.livenessProbe.enabled` | Turn on and off liveness probe (redis slave pod) | `master.livenessProbe.enabled` | | `slave.livenessProbe.initialDelaySeconds` | Delay before liveness probe is initiated (redis slave pod) | `master.livenessProbe.initialDelaySeconds` |