Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,25 @@ export SUPER_SECRETS_tenant1_MY_SECRET='foo' # This will be resolved by using {{

<TabItem value='helm'>

Connector secrets can be used in Helm charts. Review the documentation on [managing secrets in Helm charts](/self-managed/deployment/helm/configure/secret-management.md) for additional details.
Connector secrets can be used in Helm charts, e.g. referencing a [Kubernetes Secret
](https://kubernetes.io/docs/concepts/configuration/secret/):
```yaml
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[prettier] reported by reviewdog 🐶

Suggested change
```yaml
```yaml

connectors:
envFrom:
- secretRef:
name: camunda-connector-secrets
```

```
apiVersion: v1
kind: Secret
metadata:
name: camunda-connector-secrets
stringData:
MY_SECRET: foo
```

Review the documentation on [managing secrets in Helm charts](/self-managed/deployment/helm/configure/secret-management.md) for additional details.

</TabItem>

Expand Down
Loading