Skip to content

Commit

Permalink
Additional configuration for redis instances
Browse files Browse the repository at this point in the history
  • Loading branch information
timetinytim committed May 14, 2024
1 parent 3e9ae3e commit 2675296
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2675296

Please sign in to comment.