@backstage/plugin-kubernetes-backend 0.7.3-next.1 → 0.7.3

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,33 @@
1
1
  # @backstage/plugin-kubernetes-backend
2
2
 
3
+ ## 0.7.3
4
+
5
+ ### Patch Changes
6
+
7
+ - de676888bc: Added missing cluster locator configuration schema entries, for the catalog and local proxy types
8
+ - d4a8c683be: kubernetes service locator now take request context parameters
9
+ - Updated dependencies
10
+ - @backstage/catalog-model@1.1.2
11
+ - @backstage/backend-common@0.15.2
12
+ - @backstage/plugin-auth-node@0.2.6
13
+ - @backstage/catalog-client@1.1.1
14
+ - @backstage/plugin-kubernetes-common@0.4.3
15
+ - @backstage/config@1.0.3
16
+ - @backstage/errors@1.1.2
17
+
18
+ ## 0.7.3-next.2
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+ - @backstage/backend-common@0.15.2-next.2
24
+ - @backstage/plugin-auth-node@0.2.6-next.2
25
+ - @backstage/catalog-client@1.1.1-next.2
26
+ - @backstage/catalog-model@1.1.2-next.2
27
+ - @backstage/config@1.0.3-next.2
28
+ - @backstage/errors@1.1.2-next.2
29
+ - @backstage/plugin-kubernetes-common@0.4.3-next.2
30
+
3
31
  ## 0.7.3-next.1
4
32
 
5
33
  ### Patch Changes
@@ -31,18 +31,6 @@ export interface Config {
31
31
  type: 'multiTenant';
32
32
  };
33
33
  clusterLocatorMethods: Array<
34
- | {
35
- /** @visibility frontend */
36
- type: 'gke';
37
- /** @visibility frontend */
38
- projectId: string;
39
- /** @visibility frontend */
40
- region?: string;
41
- /** @visibility frontend */
42
- skipTLSVerify?: boolean;
43
- /** @visibility frontend */
44
- skipMetricsLookup?: boolean;
45
- }
46
34
  | {
47
35
  /** @visibility frontend */
48
36
  type: 'config';
@@ -68,6 +56,26 @@ export interface Config {
68
56
  skipMetricsLookup?: boolean;
69
57
  }>;
70
58
  }
59
+ | {
60
+ /** @visibility frontend */
61
+ type: 'catalog';
62
+ }
63
+ | {
64
+ /** @visibility frontend */
65
+ type: 'localKubectlProxy';
66
+ }
67
+ | {
68
+ /** @visibility frontend */
69
+ type: 'gke';
70
+ /** @visibility frontend */
71
+ projectId: string;
72
+ /** @visibility frontend */
73
+ region?: string;
74
+ /** @visibility frontend */
75
+ skipTLSVerify?: boolean;
76
+ /** @visibility frontend */
77
+ skipMetricsLookup?: boolean;
78
+ }
71
79
  >;
72
80
  customResources?: Array<{
73
81
  group: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-kubernetes-backend",
3
3
  "description": "A Backstage backend plugin that integrates towards Kubernetes",
4
- "version": "0.7.3-next.1",
4
+ "version": "0.7.3",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -23,7 +23,7 @@
23
23
  "backstage",
24
24
  "kubernetes"
25
25
  ],
26
- "configSchema": "schema.d.ts",
26
+ "configSchema": "config.d.ts",
27
27
  "scripts": {
28
28
  "start": "backstage-cli package start",
29
29
  "build": "backstage-cli package build",
@@ -35,13 +35,13 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "@azure/identity": "^2.0.4",
38
- "@backstage/backend-common": "^0.15.2-next.1",
39
- "@backstage/catalog-client": "^1.1.1-next.1",
40
- "@backstage/catalog-model": "^1.1.2-next.1",
41
- "@backstage/config": "^1.0.3-next.1",
42
- "@backstage/errors": "^1.1.2-next.1",
43
- "@backstage/plugin-auth-node": "^0.2.6-next.1",
44
- "@backstage/plugin-kubernetes-common": "^0.4.3-next.1",
38
+ "@backstage/backend-common": "^0.15.2",
39
+ "@backstage/catalog-client": "^1.1.1",
40
+ "@backstage/catalog-model": "^1.1.2",
41
+ "@backstage/config": "^1.0.3",
42
+ "@backstage/errors": "^1.1.2",
43
+ "@backstage/plugin-auth-node": "^0.2.6",
44
+ "@backstage/plugin-kubernetes-common": "^0.4.3",
45
45
  "@google-cloud/container": "^4.0.0",
46
46
  "@kubernetes/client-node": "^0.17.0",
47
47
  "@types/express": "^4.17.6",
@@ -62,13 +62,13 @@
62
62
  "yn": "^4.0.0"
63
63
  },
64
64
  "devDependencies": {
65
- "@backstage/cli": "^0.20.0-next.1",
65
+ "@backstage/cli": "^0.20.0",
66
66
  "@types/aws4": "^1.5.1",
67
67
  "aws-sdk-mock": "^5.2.1",
68
68
  "supertest": "^6.1.3"
69
69
  },
70
70
  "files": [
71
71
  "dist",
72
- "schema.d.ts"
72
+ "config.d.ts"
73
73
  ]
74
74
  }