@backstage/plugin-kubernetes 0.4.19 → 0.5.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 +54 -0
- package/dist/index.esm.js +407 -76
- package/dist/index.esm.js.map +1 -1
- package/package.json +17 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,59 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c010632f88: Add pod metrics lookup and display in pod table.
|
|
8
|
+
|
|
9
|
+
## Backwards incompatible changes
|
|
10
|
+
|
|
11
|
+
If your Kubernetes distribution does not have the [metrics server](https://github.com/kubernetes-sigs/metrics-server) installed,
|
|
12
|
+
you will need to set the `skipMetricsLookup` config flag to `false`.
|
|
13
|
+
|
|
14
|
+
See the [configuration docs](https://backstage.io/docs/features/kubernetes/configuration) for more details.
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- cd450844f6: Moved React dependencies to `peerDependencies` and allow both React v16 and v17 to be used.
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @backstage/core-components@0.8.0
|
|
21
|
+
- @backstage/core-plugin-api@0.3.0
|
|
22
|
+
- @backstage/plugin-kubernetes-common@0.2.0
|
|
23
|
+
- @backstage/plugin-catalog-react@0.6.5
|
|
24
|
+
|
|
25
|
+
## 0.4.22
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- 86ed770308: Added accordions to display information on Jobs and CronJobs in the kubernetes plugin. Updated the PodsTable with fewer default columns and the ability to pass in additional ones depending on the use case.
|
|
30
|
+
- Updated dependencies
|
|
31
|
+
- @backstage/core-components@0.7.6
|
|
32
|
+
- @backstage/theme@0.2.14
|
|
33
|
+
- @backstage/core-plugin-api@0.2.2
|
|
34
|
+
- @backstage/plugin-kubernetes-common@0.1.7
|
|
35
|
+
|
|
36
|
+
## 0.4.21
|
|
37
|
+
|
|
38
|
+
### Patch Changes
|
|
39
|
+
|
|
40
|
+
- 3739d3f773: Implement support for formatting OpenShift dashboard url links
|
|
41
|
+
- Updated dependencies
|
|
42
|
+
- @backstage/plugin-kubernetes-common@0.1.6
|
|
43
|
+
- @backstage/core-plugin-api@0.2.1
|
|
44
|
+
- @backstage/core-components@0.7.5
|
|
45
|
+
|
|
46
|
+
## 0.4.20
|
|
47
|
+
|
|
48
|
+
### Patch Changes
|
|
49
|
+
|
|
50
|
+
- a125278b81: Refactor out the deprecated path and icon from RouteRefs
|
|
51
|
+
- Updated dependencies
|
|
52
|
+
- @backstage/catalog-model@0.9.7
|
|
53
|
+
- @backstage/plugin-catalog-react@0.6.4
|
|
54
|
+
- @backstage/core-components@0.7.4
|
|
55
|
+
- @backstage/core-plugin-api@0.2.0
|
|
56
|
+
|
|
3
57
|
## 0.4.19
|
|
4
58
|
|
|
5
59
|
### Patch Changes
|