Skip to content

Commit

Permalink
doc: improved the documentation in values.yaml for Redis password (#283)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: Jan Larwig <[email protected]>
  • Loading branch information
max-pfeiffer and tuunit authored Feb 9, 2025
1 parent 2e4cf2f commit e55dffd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
8 changes: 4 additions & 4 deletions helm/oauth2-proxy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: oauth2-proxy
version: 7.10.4
version: 7.10.5
apiVersion: v2
appVersion: 7.8.1
home: https://oauth2-proxy.github.io/oauth2-proxy/
Expand Down Expand Up @@ -31,8 +31,8 @@ maintainers:
kubeVersion: ">=1.16.0-0"
annotations:
artifacthub.io/changes: |
- kind: fixed
description: automatically concatenate connectionUrls with comma
- kind: added
description: Add documentation to ensure Redis password consistency between sessionStorage and Redis sub chart is well explained
links:
- name: Github PR
url: https://github.com/oauth2-proxy/manifests/pull/268
url: https://github.com/oauth2-proxy/manifests/pull/283
8 changes: 7 additions & 1 deletion helm/oauth2-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,8 @@ sessionStorage:
existingSecret: ""
# Redis password value. Applicable for all Redis configurations. Taken from redis subchart secret if not set. `sessionStorage.redis.existingSecret` takes precedence
password: ""
# Key of the Kubernetes secret data containing the redis password value
# Key of the Kubernetes secret data containing the redis password value. If you use the redis sub chart, make sure
# this password matches the one used in redis.global.redis.password (see below).
passwordKey: "redis-password"
# Can be one of standalone|cluster|sentinel
clientType: "standalone"
Expand Down Expand Up @@ -395,6 +396,11 @@ redis:
enabled: false
# Redis specific helm chart settings, please see:
# https://github.com/bitnami/charts/tree/master/bitnami/redis#parameters
# global:
# redis:
# password: yourpassword
# If you install Redis using this sub chart, make sure that the password of the sub chart matches the password
# you set in sessionStorage.redis.password (see above).
# redisPort: 6379
# architecture: standalone

Expand Down

0 comments on commit e55dffd

Please sign in to comment.