docs: Remove changeset & docs changes

Signed-off-by: Carlos Esteban Lopez <lcarlosesteb@vmware.com>
This commit is contained in:
Carlos Esteban Lopez
2022-08-30 10:10:27 -05:00
parent 9b11c25661
commit c0531dd10f
2 changed files with 14 additions and 14 deletions
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-kubernetes': patch
---
Add docs section for Kubernetes plugin Auth.
+14 -9
View File
@@ -7,18 +7,19 @@ description: Authentication in kubernetes plugin
The authentication process in kubernetes is basically separate from backstage auth, the
providers are configured so your kubernetes plugin can locate and access the clusters you
have access to, the providers currently available are categorized in server side auth and
client side auth, here's the list:
client side auth.
## Server Side Providers
These providers authenticate your _application_ with the cluster, meaning anyone that is
logged in into your backstage app will be granted the same access to Kubernetes objects. The providers
available as server side are:
* `aws`
* `azure`
* `googleServiceAccount`
* `localKubectlProxy`
* `serviceAccount`
logged in into your backstage app will be granted the same access to Kubernetes objects.
The providers available as server side are:
- `aws`
- `azure`
- `googleServiceAccount`
- `localKubectlProxy`
- `serviceAccount`
## Client Side Providers
@@ -27,4 +28,8 @@ credentials and will have access to the clusters as long as the user has been au
to access said cluster, if the cluster is listed in the `clusterLocatorMethods` in the
config, but the user hasn't been authorized to access, the user will see the cluster
listed but will not see any resources in the plugin page for that cluster, and the error
will show as `401` or similar, current providers available are `google` and `oidc`.
will show as `401` or similar.
The providers available as client side are:
- `google`
- `oidc`