@backstage/plugin-kubernetes-backend 0.10.0-next.2 → 0.10.0-next.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 +18 -0
- package/alpha/package.json +1 -1
- package/config.d.ts +9 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes-backend
|
|
2
2
|
|
|
3
|
+
## 0.10.0-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 56a28b559e5: Updated kubernetes config schema to match available options
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/catalog-model@1.3.0-next.0
|
|
10
|
+
- @backstage/backend-common@0.18.4-next.2
|
|
11
|
+
- @backstage/backend-plugin-api@0.5.1-next.2
|
|
12
|
+
- @backstage/catalog-client@1.4.1-next.1
|
|
13
|
+
- @backstage/config@1.0.7
|
|
14
|
+
- @backstage/errors@1.1.5
|
|
15
|
+
- @backstage/plugin-auth-node@0.2.13-next.2
|
|
16
|
+
- @backstage/plugin-catalog-node@1.3.5-next.3
|
|
17
|
+
- @backstage/plugin-kubernetes-common@0.6.2-next.2
|
|
18
|
+
- @backstage/plugin-permission-common@0.7.5-next.0
|
|
19
|
+
- @backstage/plugin-permission-node@0.7.7-next.2
|
|
20
|
+
|
|
3
21
|
## 0.10.0-next.2
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/config.d.ts
CHANGED
|
@@ -21,11 +21,15 @@ export interface Config {
|
|
|
21
21
|
| 'services'
|
|
22
22
|
| 'configmaps'
|
|
23
23
|
| 'deployments'
|
|
24
|
+
| 'limitranges'
|
|
24
25
|
| 'replicasets'
|
|
25
26
|
| 'horizontalpodautoscalers'
|
|
26
27
|
| 'jobs'
|
|
27
28
|
| 'cronjobs'
|
|
28
29
|
| 'ingresses'
|
|
30
|
+
| 'customresources'
|
|
31
|
+
| 'statefulsets'
|
|
32
|
+
| 'daemonsets'
|
|
29
33
|
>;
|
|
30
34
|
serviceLocatorMethod: {
|
|
31
35
|
type: 'multiTenant';
|
|
@@ -99,11 +103,15 @@ export interface Config {
|
|
|
99
103
|
services?: string;
|
|
100
104
|
configmaps?: string;
|
|
101
105
|
deployments?: string;
|
|
106
|
+
limitranges?: string;
|
|
102
107
|
replicasets?: string;
|
|
103
108
|
horizontalpodautoscalers?: string;
|
|
104
|
-
cronjobs?: string;
|
|
105
109
|
jobs?: string;
|
|
110
|
+
cronjobs?: string;
|
|
106
111
|
ingresses?: string;
|
|
112
|
+
customresources?: string;
|
|
113
|
+
statefulsets?: string;
|
|
114
|
+
daemonsets?: string;
|
|
107
115
|
} & { [pluralKind: string]: string };
|
|
108
116
|
};
|
|
109
117
|
}
|
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.10.0-next.
|
|
4
|
+
"version": "0.10.0-next.3",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
"@azure/identity": "^2.0.4",
|
|
51
51
|
"@backstage/backend-common": "^0.18.4-next.2",
|
|
52
52
|
"@backstage/backend-plugin-api": "^0.5.1-next.2",
|
|
53
|
-
"@backstage/catalog-client": "^1.4.1-next.
|
|
54
|
-
"@backstage/catalog-model": "^1.
|
|
53
|
+
"@backstage/catalog-client": "^1.4.1-next.1",
|
|
54
|
+
"@backstage/catalog-model": "^1.3.0-next.0",
|
|
55
55
|
"@backstage/config": "^1.0.7",
|
|
56
56
|
"@backstage/errors": "^1.1.5",
|
|
57
57
|
"@backstage/plugin-auth-node": "^0.2.13-next.2",
|
|
58
|
-
"@backstage/plugin-catalog-node": "^1.3.5-next.
|
|
59
|
-
"@backstage/plugin-kubernetes-common": "^0.6.2-next.
|
|
58
|
+
"@backstage/plugin-catalog-node": "^1.3.5-next.3",
|
|
59
|
+
"@backstage/plugin-kubernetes-common": "^0.6.2-next.2",
|
|
60
60
|
"@backstage/plugin-permission-common": "^0.7.5-next.0",
|
|
61
61
|
"@backstage/plugin-permission-node": "^0.7.7-next.2",
|
|
62
62
|
"@google-cloud/container": "^4.0.0",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
85
|
"@backstage/backend-test-utils": "^0.1.36-next.2",
|
|
86
|
-
"@backstage/cli": "^0.22.6-next.
|
|
86
|
+
"@backstage/cli": "^0.22.6-next.3",
|
|
87
87
|
"@types/aws4": "^1.5.1",
|
|
88
88
|
"@types/http-proxy-middleware": "^0.19.3",
|
|
89
89
|
"aws-sdk-mock": "^5.2.1",
|