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
11 changes: 10 additions & 1 deletion docs/connect/kubernetes-plugin-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,19 @@ EOF
///

After creating the Service Account Token, retrieve the actual token using the following command from the `eda-system` namespace:

/// tab | YAML Resource
```bash
kubectl get secrets/k8s-controller-plugin -n eda-system --template={{.data.token}} | base64 --decode
```
/// tab | `for OLM based deployment` command
This section is only applicable when using the OLM installation. The secret to be used can be extracted usign below command

```bash
kubectl get secrets/k8s-controller-plugin -n eda-system --template={{.data.token}}
```

///
kubectl get secret

This token will be needed during plugin deployment.

Expand Down