adding changeset,api-report,addressing ci check

Signed-off-by: Ruben Vallejo <rvallejo@vmware.com>
This commit is contained in:
Ruben Vallejo
2023-02-07 15:38:33 -05:00
parent 1fef8423ce
commit 804f6d16b0
7 changed files with 53 additions and 33 deletions
+4 -1
View File
@@ -16,7 +16,7 @@
import { createPermission } from '@backstage/plugin-permission-common';
/** This permission is used to authorize actions that involve using the kubernetes Proxy Endpoint /proxy
/** This permission is used to authorize `read` actions that involve using the kubernetes Proxy Endpoint /proxy
* @alpha
*/
export const kubernetesProxyReadPermission = createPermission({
@@ -24,6 +24,9 @@ export const kubernetesProxyReadPermission = createPermission({
attributes: { action: 'read' },
});
/** This permission is used to authorize `create` actions that involve using the kubernetes Proxy Endpoint /proxy
* @alpha
*/
export const kubernetesProxyCreatePermission = createPermission({
name: 'kubernetes.proxy.create',
attributes: { action: 'create' },