From 76c8dae8352785cad772e3b8d0ce10e78eac14d9 Mon Sep 17 00:00:00 2001 From: pratdesai91 <55426565+pratdesai91@users.noreply.github.com> Date: Sat, 28 Feb 2026 15:30:26 -0500 Subject: [PATCH] Update Kubernetes plugin installation instructions Added command for extracting secret token for OLM installation. The earlier command is applicable for helm based but OLM needs the raw toekn from the secrets file. --- docs/connect/kubernetes-plugin-installation.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/connect/kubernetes-plugin-installation.md b/docs/connect/kubernetes-plugin-installation.md index 5a0a6d5..6cec38f 100644 --- a/docs/connect/kubernetes-plugin-installation.md +++ b/docs/connect/kubernetes-plugin-installation.md @@ -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.