@backstage/plugin-kubernetes-react 0.3.3 → 0.3.4-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 +25 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes-react
|
|
2
2
|
|
|
3
|
+
## 0.3.4-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e6d474f: Fixed ResourceUtilization component for POD Memory Limits
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/catalog-model@1.4.5
|
|
10
|
+
- @backstage/core-components@0.14.4-next.0
|
|
11
|
+
- @backstage/core-plugin-api@1.9.1
|
|
12
|
+
- @backstage/errors@1.2.4
|
|
13
|
+
- @backstage/types@1.1.1
|
|
14
|
+
- @backstage/plugin-kubernetes-common@0.7.5
|
|
15
|
+
|
|
16
|
+
## 0.3.4-next.0
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @backstage/core-components@0.14.4-next.0
|
|
22
|
+
- @backstage/catalog-model@1.4.5
|
|
23
|
+
- @backstage/core-plugin-api@1.9.1
|
|
24
|
+
- @backstage/errors@1.2.4
|
|
25
|
+
- @backstage/types@1.1.1
|
|
26
|
+
- @backstage/plugin-kubernetes-common@0.7.5
|
|
27
|
+
|
|
3
28
|
## 0.3.3
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/dist/index.esm.js
CHANGED
|
@@ -1872,7 +1872,7 @@ const PodDrawer = ({ podAndErrors, open }) => {
|
|
|
1872
1872
|
title: "Memory limits",
|
|
1873
1873
|
usage: podMetrics.memory.currentUsage,
|
|
1874
1874
|
total: podMetrics.memory.limitTotal,
|
|
1875
|
-
totalFormatted: bytesToMiB(podMetrics.memory.
|
|
1875
|
+
totalFormatted: bytesToMiB(podMetrics.memory.limitTotal)
|
|
1876
1876
|
}
|
|
1877
1877
|
))), ((_e = podAndErrors.pod.status) == null ? void 0 : _e.phase) === "Pending" && /* @__PURE__ */ React__default.createElement(PendingPodContent, { pod: podAndErrors.pod }), ((_g = (_f = podAndErrors.pod.status) == null ? void 0 : _f.containerStatuses) == null ? void 0 : _g.length) && /* @__PURE__ */ React__default.createElement(Grid, { container: true, spacing: 2 }, /* @__PURE__ */ React__default.createElement(Grid, { item: true, xs: 12 }, /* @__PURE__ */ React__default.createElement(Typography, { variant: "h5" }, "Containers")), /* @__PURE__ */ React__default.createElement(Grid, { item: true, xs: 12 }, /* @__PURE__ */ React__default.createElement(ItemCardGrid, null, (_i = (_h = podAndErrors.pod.status) == null ? void 0 : _h.containerStatuses) == null ? void 0 : _i.map(
|
|
1878
1878
|
(containerStatus, i) => {
|