@backstage/plugin-kubernetes-react 0.3.4-next.0 → 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 CHANGED
@@ -1,5 +1,18 @@
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
+
3
16
  ## 0.3.4-next.0
4
17
 
5
18
  ### 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.requestTotal)
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) => {