From 18fe10f7d8898c79b03b5c8925a26e4b9ee48add Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Mauricio=20G=C3=B3mez=20P?= Date: Wed, 21 Feb 2024 17:31:11 -0500 Subject: [PATCH] Update docs/features/kubernetes/authstrategies.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jamie Klassen Signed-off-by: Andrés Mauricio Gómez P --- docs/features/kubernetes/authstrategies.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/features/kubernetes/authstrategies.md b/docs/features/kubernetes/authstrategies.md index af2da6bdfd..d8291ccb93 100644 --- a/docs/features/kubernetes/authstrategies.md +++ b/docs/features/kubernetes/authstrategies.md @@ -26,8 +26,7 @@ A Kubernetes authentication flow could require splitting the authentication proc ## AuthenticationStrategy interface -This is how the [`AuthenticationStrategy`][2] interface has been defined to state the signature that the Kubernetes AuthStrategy -instances should implement, it defines the authentication steps executed on the **server side** to authenticate against a Kubernetes Cluster. It is similar to [KubernetesAuthProvider](https://github.com/backstage/backstage/blob/57397e7d6d2d725712c439f4ab93f2ac6aa27bf8/plugins/kubernetes-react/src/kubernetes-auth-provider/types.ts#L21) interface who defines the authentication steps on the **client side**. +The [`AuthenticationStrategy`][2] interface defines the steps executed on the **server side** to authenticate against a Kubernetes cluster. It is similar to the [`KubernetesAuthProvider`](https://github.com/backstage/backstage/blob/57397e7d6d2d725712c439f4ab93f2ac6aa27bf8/plugins/kubernetes-react/src/kubernetes-auth-provider/types.ts#L21) interface, which defines corresponding steps on the **client side**. ```ts title="plugins/kubernetes-node/src/types/types.ts" export interface AuthenticationStrategy {