@backstage/plugin-kubernetes-common 0.2.10-next.0 → 0.2.10-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @backstage/plugin-kubernetes-common
2
2
 
3
+ ## 0.2.10-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 447e060872: Add support for 'oidc' as authProvider for kubernetes authentication
8
+ and adds optional 'oidcTokenProvider' config value. This will allow
9
+ users to authenticate to kubernetes cluster using id tokens obtained
10
+ from the configured auth provider in their backstage instance.
11
+
3
12
  ## 0.2.10-next.0
4
13
 
5
14
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -5,6 +5,9 @@ import { Entity } from '@backstage/catalog-model';
5
5
  interface KubernetesRequestBody {
6
6
  auth?: {
7
7
  google?: string;
8
+ oidc?: {
9
+ [key: string]: string;
10
+ };
8
11
  };
9
12
  entity: Entity;
10
13
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-kubernetes-common",
3
3
  "description": "Common functionalities for kubernetes, to be shared between kubernetes and kubernetes-backend plugin",
4
- "version": "0.2.10-next.0",
4
+ "version": "0.2.10-next.1",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -49,6 +49,6 @@
49
49
  ".."
50
50
  ]
51
51
  },
52
- "gitHead": "cfbf5762d7d91eee18999306b21d63840400ee29",
52
+ "gitHead": "586464f803f55325dd11aca1cb4bc014fd80f04d",
53
53
  "module": "dist/index.esm.js"
54
54
  }