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/camunda-platform-8.8/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -341,9 +341,9 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
341
341
| `global.secrets.name` | defines the name of the secret object that has the auto-generated passwords. | `camunda-credentials` |
342
342
| `global.secrets.annotations` | defines the secret object annotations that utilize Helm hooks to keep that object out of the Helm deployment. | `{}` |
343
343
| `global.license` | | |
344
-
| `global.license.key` | (DEPRECATED - use global.license.secret instead) if set, it will be exposed as "CAMUNDA_LICENSE_KEY" in the apps. | `""` |
345
-
| `global.license.existingSecret` | (DEPRECATED - use global.license.secret instead) you can provide an existing secret name for Camunda license secret. | `""` |
346
-
| `global.license.existingSecretKey` | (DEPRECATED - use global.license.secret instead) you can provide the key within the existing secret object for Camunda license key. | `""` |
344
+
| `global.license.key` | (DEPRECATED - use global.license.secret.inlineSecret instead) if set, it will be exposed as "CAMUNDA_LICENSE_KEY" in the apps. | `""` |
345
+
| `global.license.existingSecret` | (DEPRECATED - use global.license.secret.existingSecret instead) you can provide an existing secret name for Camunda license secret. | `""` |
346
+
| `global.license.existingSecretKey` | (DEPRECATED - use global.license.secret.existingSecretKey instead) you can provide the key within the existing secret object for Camunda license key. | `""` |
347
347
| `global.license.secret` | configuration to provide the license secret. | |
348
348
| `global.license.secret.inlineSecret` | can be used to provide the license as a plain-text value for non-production usage. | `""` |
349
349
| `global.license.secret.existingSecret` | can be used to reference an existing Kubernetes Secret containing the license. | `""` |
Copy file name to clipboardExpand all lines: charts/camunda-platform-8.8/values.schema.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -25,17 +25,17 @@
25
25
"properties": {
26
26
"key": {
27
27
"type": "string",
28
-
"description": "(DEPRECATED - use global.license.secret instead) if set, it will be exposed as \"CAMUNDA_LICENSE_KEY\" in the apps.",
28
+
"description": "(DEPRECATED - use global.license.secret.inlineSecret instead) if set, it will be exposed as \"CAMUNDA_LICENSE_KEY\" in the apps.",
29
29
"default": ""
30
30
},
31
31
"existingSecret": {
32
32
"type": "string",
33
-
"description": "(DEPRECATED - use global.license.secret instead) you can provide an existing secret name for Camunda license secret.",
33
+
"description": "(DEPRECATED - use global.license.secret.existingSecret instead) you can provide an existing secret name for Camunda license secret.",
34
34
"default": ""
35
35
},
36
36
"existingSecretKey": {
37
37
"type": "string",
38
-
"description": "(DEPRECATED - use global.license.secret instead) you can provide the key within the existing secret object for Camunda license key.",
38
+
"description": "(DEPRECATED - use global.license.secret.existingSecretKey instead) you can provide the key within the existing secret object for Camunda license key.",
Copy file name to clipboardExpand all lines: charts/camunda-platform-8.8/values.yaml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -57,11 +57,11 @@ global:
57
57
## License configuration.
58
58
## @extra global.license
59
59
license:
60
-
## @param global.license.key (DEPRECATED - use global.license.secret instead) if set, it will be exposed as "CAMUNDA_LICENSE_KEY" in the apps.
60
+
## @param global.license.key (DEPRECATED - use global.license.secret.inlineSecret instead) if set, it will be exposed as "CAMUNDA_LICENSE_KEY" in the apps.
61
61
key: ""
62
-
## @param global.license.existingSecret (DEPRECATED - use global.license.secret instead) you can provide an existing secret name for Camunda license secret.
62
+
## @param global.license.existingSecret (DEPRECATED - use global.license.secret.existingSecret instead) you can provide an existing secret name for Camunda license secret.
63
63
existingSecret: ""
64
-
## @param global.license.existingSecretKey (DEPRECATED - use global.license.secret instead) you can provide the key within the existing secret object for Camunda license key.
64
+
## @param global.license.existingSecretKey (DEPRECATED - use global.license.secret.existingSecretKey instead) you can provide the key within the existing secret object for Camunda license key.
65
65
existingSecretKey: ""
66
66
## @extra global.license.secret configuration to provide the license secret.
0 commit comments