From 26752965502ec5f66dabc1ba79ba743ac1a9642a Mon Sep 17 00:00:00 2001 From: Tim Campbell Date: Tue, 14 May 2024 21:40:53 +0200 Subject: [PATCH] Additional configuration for redis instances --- values.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/values.yaml b/values.yaml index c1d5af79..ce239559 100644 --- a/values.yaml +++ b/values.yaml @@ -437,6 +437,34 @@ redis: replica: replicaCount: 0 + # Configuration for a separate redis instance only for sidekiq processing. + # If enabled, any values not specified will be copied from the base config. + # If set to false, the main redis instance will be used, and all values will + # be ignored. + sidekiq: + enabled: false + hostname: "" + port: 6379 + auth: + password: "" + # you can also specify the name of an existing Secret + # with a key of redis-password set to the password you want + existingSecret: "" + + # Configuration for a separate redis instance only for cache. + # If enabled, any values not specified will be copied from the base config. + # If set to false, the main redis instance will be used, and all values will + # be ignored. + cache: + enabled: false + hostname: "" + port: 6379 + auth: + password: "" + # you can also specify the name of an existing Secret + # with a key of redis-password set to the password you want + existingSecret: "" + # @ignored service: type: ClusterIP