@backstage/plugin-kubernetes-common 0.2.10-next.0 → 0.3.0-next.0
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 +27 -0
- package/dist/index.d.ts +10 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes-common
|
|
2
2
|
|
|
3
|
+
## 0.3.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4328737af6: Add support to fetch data for Stateful Sets
|
|
8
|
+
|
|
9
|
+
## 0.2.10
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 1ef98cfe48: add Azure Identity auth provider and AKS dashboard formatter
|
|
14
|
+
- 447e060872: Add support for 'oidc' as authProvider for kubernetes authentication
|
|
15
|
+
and adds optional 'oidcTokenProvider' config value. This will allow
|
|
16
|
+
users to authenticate to kubernetes cluster using id tokens obtained
|
|
17
|
+
from the configured auth provider in their backstage instance.
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/catalog-model@1.0.2
|
|
20
|
+
|
|
21
|
+
## 0.2.10-next.1
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- 447e060872: Add support for 'oidc' as authProvider for kubernetes authentication
|
|
26
|
+
and adds optional 'oidcTokenProvider' config value. This will allow
|
|
27
|
+
users to authenticate to kubernetes cluster using id tokens obtained
|
|
28
|
+
from the configured auth provider in their backstage instance.
|
|
29
|
+
|
|
3
30
|
## 0.2.10-next.0
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
import { JsonObject } from '@backstage/types';
|
|
2
|
-
import { V1Pod, V1Service, V1ConfigMap, V1Deployment, V1ReplicaSet, V1HorizontalPodAutoscaler, V1Job, V1CronJob, V1Ingress } from '@kubernetes/client-node';
|
|
2
|
+
import { V1Pod, V1Service, V1ConfigMap, V1Deployment, V1ReplicaSet, V1HorizontalPodAutoscaler, V1Job, V1CronJob, V1Ingress, V1StatefulSet } from '@kubernetes/client-node';
|
|
3
3
|
import { Entity } from '@backstage/catalog-model';
|
|
4
4
|
|
|
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
|
}
|
|
@@ -55,7 +58,7 @@ interface ObjectsByEntityResponse {
|
|
|
55
58
|
items: ClusterObjects[];
|
|
56
59
|
}
|
|
57
60
|
declare type AuthProviderType = 'google' | 'serviceAccount' | 'aws' | 'azure';
|
|
58
|
-
declare type FetchResponse = PodFetchResponse | ServiceFetchResponse | ConfigMapFetchResponse | DeploymentFetchResponse | ReplicaSetsFetchResponse | HorizontalPodAutoscalersFetchResponse | JobsFetchResponse | CronJobsFetchResponse | IngressesFetchResponse | CustomResourceFetchResponse;
|
|
61
|
+
declare type FetchResponse = PodFetchResponse | ServiceFetchResponse | ConfigMapFetchResponse | DeploymentFetchResponse | ReplicaSetsFetchResponse | HorizontalPodAutoscalersFetchResponse | JobsFetchResponse | CronJobsFetchResponse | IngressesFetchResponse | CustomResourceFetchResponse | StatefulSetsFetchResponse;
|
|
59
62
|
interface PodFetchResponse {
|
|
60
63
|
type: 'pods';
|
|
61
64
|
resources: Array<V1Pod>;
|
|
@@ -96,6 +99,10 @@ interface CustomResourceFetchResponse {
|
|
|
96
99
|
type: 'customresources';
|
|
97
100
|
resources: Array<any>;
|
|
98
101
|
}
|
|
102
|
+
interface StatefulSetsFetchResponse {
|
|
103
|
+
type: 'statefulsets';
|
|
104
|
+
resources: Array<V1StatefulSet>;
|
|
105
|
+
}
|
|
99
106
|
interface KubernetesFetchError {
|
|
100
107
|
errorType: KubernetesErrorTypes;
|
|
101
108
|
statusCode?: number;
|
|
@@ -119,4 +126,4 @@ interface ClientPodStatus {
|
|
|
119
126
|
containers: ClientContainerStatus[];
|
|
120
127
|
}
|
|
121
128
|
|
|
122
|
-
export { AuthProviderType, ClientContainerStatus, ClientCurrentResourceUsage, ClientPodStatus, ClusterAttributes, ClusterObjects, ConfigMapFetchResponse, CronJobsFetchResponse, CustomResourceFetchResponse, DeploymentFetchResponse, FetchResponse, HorizontalPodAutoscalersFetchResponse, IngressesFetchResponse, JobsFetchResponse, KubernetesErrorTypes, KubernetesFetchError, KubernetesRequestBody, ObjectsByEntityResponse, PodFetchResponse, ReplicaSetsFetchResponse, ServiceFetchResponse };
|
|
129
|
+
export { AuthProviderType, ClientContainerStatus, ClientCurrentResourceUsage, ClientPodStatus, ClusterAttributes, ClusterObjects, ConfigMapFetchResponse, CronJobsFetchResponse, CustomResourceFetchResponse, DeploymentFetchResponse, FetchResponse, HorizontalPodAutoscalersFetchResponse, IngressesFetchResponse, JobsFetchResponse, KubernetesErrorTypes, KubernetesFetchError, KubernetesRequestBody, ObjectsByEntityResponse, PodFetchResponse, ReplicaSetsFetchResponse, ServiceFetchResponse, StatefulSetsFetchResponse };
|
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.
|
|
4
|
+
"version": "0.3.0-next.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -38,17 +38,17 @@
|
|
|
38
38
|
"url": "https://github.com/backstage/backstage/issues"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@backstage/catalog-model": "^1.0.2
|
|
41
|
+
"@backstage/catalog-model": "^1.0.2",
|
|
42
42
|
"@kubernetes/client-node": "^0.16.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@backstage/cli": "^0.17.
|
|
45
|
+
"@backstage/cli": "^0.17.2-next.0"
|
|
46
46
|
},
|
|
47
47
|
"jest": {
|
|
48
48
|
"roots": [
|
|
49
49
|
".."
|
|
50
50
|
]
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "c1511c99a532aeb003a97510a5638bd939ee65ca",
|
|
53
53
|
"module": "dist/index.esm.js"
|
|
54
54
|
}
|