From b3cfac137509ff240ac06d04242e150ceacecb54 Mon Sep 17 00:00:00 2001 From: Adin Hodovic Date: Wed, 6 Apr 2022 22:42:20 +0200 Subject: [PATCH] redis/bug: Fix default replica count (#292) Co-authored-by: Travis Groth --- charts/pomerium/Chart.yaml | 2 +- charts/pomerium/README.md | 2 +- charts/pomerium/values.yaml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/pomerium/Chart.yaml b/charts/pomerium/Chart.yaml index 5d6caa9f..95435db3 100644 --- a/charts/pomerium/Chart.yaml +++ b/charts/pomerium/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: pomerium -version: 31.1.0 +version: 31.1.1 appVersion: 0.17.0 home: http://www.pomerium.com/ icon: https://www.pomerium.com/img/icon.svg diff --git a/charts/pomerium/README.md b/charts/pomerium/README.md index c4ba4c1c..de4f65c8 100644 --- a/charts/pomerium/README.md +++ b/charts/pomerium/README.md @@ -420,7 +420,7 @@ A full listing of Pomerium's configuration variables can be found on the [config | `operator.deployment.annotations` | Annotations for the operator deployment. | `{}` | | `operator.serviceAccount.annotations` | Annotations for the operator pod service account. If none given, then use value of `annotations` | `{}` | | `operator.serviceAccount.nameOverride` | Override the name of the operator pod service account | `pomerium-operator` | -| `redis.cluster.slaveCount` | Number of slave replicas to run. [More](https://github.com/bitnami/charts/tree/master/bitnami/redis#parameters) | `1` | +| `redis.replica.replicaCount` | Number of redis replicas to run. [More](https://github.com/bitnami/charts/tree/master/bitnami/redis#parameters) | `1` | | `redis.enabled` | Enable a redis master-slave subchart deployment based on https://github.com/bitnami/charts/tree/master/bitnami/redis | `false` | | `redis.auth.createSecret` | Create the secret to store redis password and connect string. Set to `false` if you wish to use a secret not managed by this helm chart | `true` | | `redis.auth.existingSecret` | Secret used to store authentication password for redis. This is shared between Pomerium and redis. [More](https://github.com/bitnami/charts/tree/master/bitnami/redis#parameters) | `pomerium-redis-password` | diff --git a/charts/pomerium/values.yaml b/charts/pomerium/values.yaml index 556a4711..3e3af807 100644 --- a/charts/pomerium/values.yaml +++ b/charts/pomerium/values.yaml @@ -336,8 +336,8 @@ redis: createSecret: true generateTLS: true forceGenerateTLS: false - cluster: - slaveCount: 1 + replica: + replicaCount: 1 tls: enabled: true certificatesSecret: pomerium-redis-tls