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: charts/pomerium/README.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,13 +16,15 @@
16
16
-[Self Provisioned](#self-provisioned-1)
17
17
-[Configuration](#configuration)
18
18
-[Changelog](#changelog)
19
+
-[8.0.0](#800)
19
20
-[7.0.0](#700)
20
21
-[6.0.0](#600)
21
22
-[5.0.0](#500)
22
23
-[4.0.0](#400)
23
24
-[3.0.0](#300)
24
25
-[2.0.0](#200)
25
26
-[Upgrading](#upgrading)
27
+
-[8.0.0](#800-1)
26
28
-[7.0.0](#700-1)
27
29
-[5.0.0](#500-1)
28
30
-[4.0.0](#400-1)
@@ -137,7 +139,6 @@ A full listing of Pomerium's configuration variables can be found on the [config
137
139
|`config.rootDomain`| Root Domain specifies the sub-domain handled by pomerium. [See more](https://www.pomerium.io/docs/reference/reference.html#proxy-root-domains). |`corp.pomerium.io`|
138
140
|`config.administrators`| Comma seperated list of email addresses of administrative users [See more](https://www.pomerium.io/configuration/#administrators). | Optional |
139
141
|`config.existingSecret`| Name of the existing Kubernetes Secret. ||
140
-
|`config.existingConfig`| Name of the existing Config Map deployed on Kubernetes. ||
141
142
|`config.existingCASecret`| Name of the existing CA Secret. ||
142
143
|`config.generateSigningKey`| Generate a signing key to sign jwt in proxy responses. Manual signing key can be set in values. |`true`|
143
144
|`config.forceGenerateSigningKey`| Force recreation of generated signing key. You will need to restart your deployments after running |`false`|
@@ -216,6 +217,10 @@ A full listing of Pomerium's configuration variables can be found on the [config
216
217
217
218
## Changelog
218
219
220
+
### 8.0.0
221
+
222
+
- Pomerium `ConfigMap` and `Secret` were combined into a single `Secret`. See [v8.0.0 Upgrade Nodes](#800-1) to migrate
223
+
219
224
### 7.0.0
220
225
221
226
- Add automatic signing key generation. See [v7.0.0 Upgrade Nodes](#700-1) to migrate
@@ -248,6 +253,17 @@ A full listing of Pomerium's configuration variables can be found on the [config
248
253
249
254
## Upgrading
250
255
256
+
### 8.0.0
257
+
258
+
-`config.existingConfig``ConfigMap` has been merged with `config.existingSecret``Secret`. All keys from `config.existingConfig` were moved to the `config.existingSecret`
259
+
-`config.existingSecret` structure has been changed:
260
+
261
+
- all top level keys were moved under the `config.yaml` section
262
+
- naming of the top level keys was changed from `cookie-secret` to `cookie_secret` according to [the `config.yaml` format](https://www.pomerium.io/configuration/#shared-settings) (basically `'-'` was changed to the `'_'`)
263
+
264
+
-`config.existingConfig` and `config.existingSecret` cannot be used separately anymore
265
+
- If `config.existingConfig` and `config.existingSecret` options weren't used no actions are required
266
+
251
267
### 7.0.0
252
268
253
269
- A signing key is now automatically generated, similar to TLS secrets.
0 commit comments