Skip to content

Commit da3c3db

Browse files
fix: comment for identity existing secret (#4275)
Co-authored-by: distro-ci[bot] <122795778+distro-ci[bot]@users.noreply.github.com>
1 parent bb4b20e commit da3c3db

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

charts/camunda-platform-8.8/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
485485
| `global.identity.auth.identity.existingSecretKey` | (DEPRECATED - use global.identity.auth.identity.secret instead) defines the key within the existing secret object. | `identity-oidc-client-token` |
486486
| `global.identity.auth.identity.secret` | configuration to provide the identity client secret. | |
487487
| `global.identity.auth.identity.secret.inlineSecret` | can be used to provide the client secret as a plain-text value for non-production usage. | `""` |
488-
| `global.identity.auth.identity.secret.existingSecret` | can be used to reference an existing Kubernetes Secret containing the client secret. | `""` |
488+
| `global.identity.auth.identity.secret.existingSecret` | can be used to reference an existing Kubernetes Secret containing the client secret. This should ONLY be used for an external OIDC provider. If not set, a random secret is generated. | `""` |
489489
| `global.identity.auth.identity.secret.existingSecretKey` | defines the key within the existing secret object. | `""` |
490490
| `global.identity.auth.identity.redirectUrl` | defines the redirect URL, which is used by the auth platform to access Management Identity. | `http://localhost:8085` |
491491
| `global.identity.auth.identity.initialClaimName` | defines the initial claim name, which is used by Management Identity to configure initial mapping rules, | `oid` |

charts/camunda-platform-8.8/values.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@
620620
},
621621
"existingSecret": {
622622
"type": "string",
623-
"description": "can be used to reference an existing Kubernetes Secret containing the client secret.",
623+
"description": "can be used to reference an existing Kubernetes Secret containing the client secret. This should ONLY be used for an external OIDC provider. If not set, a random secret is generated.",
624624
"default": ""
625625
},
626626
"existingSecretKey": {

charts/camunda-platform-8.8/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ global:
363363
secret:
364364
## @param global.identity.auth.identity.secret.inlineSecret can be used to provide the client secret as a plain-text value for non-production usage.
365365
inlineSecret: ""
366-
## @param global.identity.auth.identity.secret.existingSecret can be used to reference an existing Kubernetes Secret containing the client secret.
366+
## @param global.identity.auth.identity.secret.existingSecret can be used to reference an existing Kubernetes Secret containing the client secret. This should ONLY be used for an external OIDC provider. If not set, a random secret is generated.
367367
existingSecret: ""
368368
## @param global.identity.auth.identity.secret.existingSecretKey defines the key within the existing secret object.
369369
existingSecretKey: ""

0 commit comments

Comments
 (0)