From 2205660f76967f57e65055402ce2c19a64f3eff2 Mon Sep 17 00:00:00 2001 From: Juan Ariza Toledano Date: Thu, 11 Jul 2019 18:03:32 +0200 Subject: [PATCH] [stable/redis] Standardize 'fullname' and 'name' macros (#15424) Signed-off-by: juan131 --- stable/redis/Chart.yaml | 2 +- stable/redis/README.md | 2 ++ stable/redis/values-production.yaml | 8 ++++++++ stable/redis/values.yaml | 8 ++++++++ 4 files changed, 19 insertions(+), 1 deletion(-) diff --git a/stable/redis/Chart.yaml b/stable/redis/Chart.yaml index a8400fcdb2..632a43152d 100644 --- a/stable/redis/Chart.yaml +++ b/stable/redis/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: redis -version: 8.1.0 +version: 8.1.1 appVersion: 5.0.5 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 122c9d0442..70003b29ff 100644 --- a/stable/redis/README.md +++ b/stable/redis/README.md @@ -130,6 +130,8 @@ The following table lists the configurable parameters of the Redis chart and the | `image.tag` | Redis Image tag | `{TAG_NAME}` | | `image.pullPolicy` | Image pull policy | `IfNotPresent` | | `image.pullSecrets` | Specify docker-registry secret names as an array | `nil` | +| `nameOverride` | String to partially override redis.fullname template with a string (will prepend the release name) | `nil` | +| `fullnameOverride` | String to fully override redis.fullname template with a string | `nil` | | `cluster.enabled` | Use master-slave topology | `true` | | `cluster.slaveCount` | Number of slaves | `1` | | `existingSecret` | Name of existing secret object (for password authentication) | `nil` | diff --git a/stable/redis/values-production.yaml b/stable/redis/values-production.yaml index 0caba7801e..59c032b5e6 100644 --- a/stable/redis/values-production.yaml +++ b/stable/redis/values-production.yaml @@ -29,6 +29,14 @@ image: # pullSecrets: # - myRegistryKeySecretName +## String to partially override redis.fullname template (will maintain the release name) +## +# nameOverride: + +## String to fully override redis.fullname template +## +# fullnameOverride: + ## Cluster settings cluster: enabled: true diff --git a/stable/redis/values.yaml b/stable/redis/values.yaml index 80b15ab7df..9a3e335a96 100644 --- a/stable/redis/values.yaml +++ b/stable/redis/values.yaml @@ -29,6 +29,14 @@ image: # pullSecrets: # - myRegistryKeySecretName +## String to partially override redis.fullname template (will maintain the release name) +## +# nameOverride: + +## String to fully override redis.fullname template +## +# fullnameOverride: + ## Cluster settings cluster: enabled: true