You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: helm/oauth2-proxy/README.md
+38-2Lines changed: 38 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,12 +107,48 @@ custom registries. Furthermore, it introduces the `global.imageRegistry` value t
107
107
108
108
This means if you were using an override for `image.repository` (to pull from a different artifact repository), you will likely have to adjust it for the new `image.registry` value. See [#367](https://github.com/oauth2-proxy/manifests/pull/367) for detailed information.
109
109
110
+
### To 10.0.0
111
+
112
+
Version 10.0.0 removes the alias for the Redis HA subchart dependency due to compatibility issues with Helm 3. Helm 3 does not support transitive conditional aliases, meaning that even when values were provided in the parent chart to disable the subchart, the aliased values were not respected correctly.
113
+
114
+
**Breaking Change**: If you were previously using the redis alias to configure the Redis HA subchart, you must now use the actual chart name redis-ha for all configuration values.
115
+
116
+
Before:
117
+
118
+
```yaml
119
+
redis:
120
+
enabled: true
121
+
# ... other redis configuration
122
+
```
123
+
124
+
After:
125
+
126
+
```yaml
127
+
redis-ha:
128
+
enabled: true
129
+
# ... other redis-ha configuration
130
+
```
131
+
132
+
Please update your values files accordingly. Refer to the official [redis-ha repository](https://github.com/DandyDeveloper/charts/tree/master/charts/redis-ha) for available configuration options.
133
+
134
+
Due to alias removal redis resources recreation will be required in case of default redis chart naming. If you would like to keep your current redis
135
+
naming introduced in version `v8` override redis name to previous alias name like this:
136
+
137
+
```yaml
138
+
redis-ha:
139
+
nameOverride: redis
140
+
enabled: true
141
+
# ... other redis-ha configuration
142
+
```
143
+
144
+
With above new chart version won't add extra `-ha` suffix to all redis resources.
145
+
110
146
## Configuration
111
147
112
148
The following table lists the configurable parameters of the oauth2-proxy chart and their default values.
0 commit comments