Skip to content

Commit

Permalink
docs: added section about client secret handling (#2486)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanlukas authored Oct 22, 2024
1 parent bdc55a9 commit b303f3a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions charts/camunda-platform-8.6/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,30 @@ identity:
mountPath: /opt/bitnami/keycloak/themes/identity
```

## Identity auth existing secrets

To configure client secrets for the components, you can use `global.identity.auth.<component>.existingSecret`. It will accept the actual client secret as a value:

```yaml
global:
identity:
auth:
<component>:
existingSecret: "my very secret client secret"
```

As secrets should not be exposed like this, you can also refer to a secret inside kubernetes:

```yaml
global:
identity:
auth:
<component>:
existingSecret:
name: "name of the secret that contains the client secret"
existingSecretKey: "key for the client secret inside the secret" # this defaults to <component>-secret
```

## Development

For development purposes, you might want to deploy and test the charts without creating a new helm chart release.
Expand Down

0 comments on commit b303f3a

Please sign in to comment.