@backstage/plugin-kubernetes 0.10.3-next.2 → 0.10.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 CHANGED
@@ -1,5 +1,42 @@
1
1
  # @backstage/plugin-kubernetes
2
2
 
3
+ ## 0.10.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 0ad36158d980: Loosened the type of the `auth` field in the body of requests to the `retrieveObjectsByServiceId` endpoint. Now any JSON object is allowed, which should make it easier for integrators to write their own custom auth strategies for Kubernetes.
8
+ - 7032c214f3b4: Add pod exec terminal to Container Card
9
+ - 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
10
+ - 6ddeade58b4c: Avoid eager use of `TextEncoder` in order not to break tests.
11
+ - 6a5e04e20e6e: fix logs dialog min height
12
+ - 8cec7664e146: Removed `@types/node` dependency
13
+ - Updated dependencies
14
+ - @backstage/plugin-kubernetes-common@0.6.6
15
+ - @backstage/plugin-catalog-react@1.8.4
16
+ - @backstage/core-components@0.13.5
17
+ - @backstage/config@1.1.0
18
+ - @backstage/catalog-model@1.4.2
19
+ - @backstage/core-plugin-api@1.6.0
20
+ - @backstage/errors@1.2.2
21
+ - @backstage/theme@0.4.2
22
+ - @backstage/types@1.1.1
23
+
24
+ ## 0.10.3-next.3
25
+
26
+ ### Patch Changes
27
+
28
+ - 7032c214f3b4: Add pod exec terminal to Container Card
29
+ - 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
30
+ - Updated dependencies
31
+ - @backstage/catalog-model@1.4.2-next.2
32
+ - @backstage/config@1.1.0-next.2
33
+ - @backstage/core-components@0.13.5-next.3
34
+ - @backstage/core-plugin-api@1.6.0-next.3
35
+ - @backstage/errors@1.2.2-next.0
36
+ - @backstage/plugin-catalog-react@1.8.4-next.3
37
+ - @backstage/plugin-kubernetes-common@0.6.6-next.2
38
+ - @backstage/theme@0.4.2-next.0
39
+
3
40
  ## 0.10.3-next.2
4
41
 
5
42
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -602,6 +602,31 @@ interface ResourceUtilizationProps {
602
602
  */
603
603
  declare const ResourceUtilization: ({ compressed, title, usage, total, totalFormatted, }: ResourceUtilizationProps) => React__default.JSX.Element;
604
604
 
605
+ /**
606
+ * Props drilled down to the PodExecTerminal component
607
+ *
608
+ * @public
609
+ */
610
+ interface PodExecTerminalProps {
611
+ clusterName: string;
612
+ containerName: string;
613
+ podName: string;
614
+ podNamespace: string;
615
+ }
616
+ /**
617
+ * Executes a `/bin/sh` process in the given pod's container and opens a terminal connected to it
618
+ *
619
+ * @public
620
+ */
621
+ declare const PodExecTerminal: (props: PodExecTerminalProps) => React__default.JSX.Element;
622
+
623
+ /**
624
+ * Opens a terminal connected to the given pod's container in a dialog
625
+ *
626
+ * @public
627
+ */
628
+ declare const PodExecTerminalDialog: (props: PodExecTerminalProps) => React__default.JSX.Element;
629
+
605
630
  interface KubernetesObjects {
606
631
  kubernetesObjects?: ObjectsByEntityResponse;
607
632
  loading: boolean;
@@ -660,4 +685,4 @@ type ErrorMatcher = {
660
685
  */
661
686
  declare const useMatchingErrors: (matcher: ErrorMatcher) => DetectedError[];
662
687
 
663
- export { Cluster, ClusterContext, ClusterLinksFormatter, ClusterLinksFormatterOptions, ContainerCard, ContainerCardProps, ContainerScope, CronJobsAccordions, CustomResources, DeploymentResources, DetectedError, DetectedErrorsByCluster, DetectedErrorsContext, EntityKubernetesContent, EntityKubernetesContentProps, ErrorList, ErrorListProps, ErrorMatcher, ErrorPanel, ErrorReporting, ErrorSeverity, Events, EventsContent, EventsContentProps, EventsOptions, EventsProps, FixDialog, FixDialogProps, GoogleKubernetesAuthProvider, GroupedResponses, GroupedResponsesContext, HorizontalPodAutoscalerDrawer, IngressesAccordions, JobsAccordions, KubernetesApi, KubernetesAuthProviders, KubernetesAuthProvidersApi, KubernetesBackendClient, KubernetesContent, KubernetesDrawer, KubernetesDrawerContent, KubernetesObjects, KubernetesProxyApi, KubernetesProxyClient, KubernetesStructuredMetadataTableDrawer, LinkErrorPanel, PendingPodContent, PendingPodContentProps, PodAndErrors, PodDrawer, PodLogs, PodLogsDialog, PodLogsDialogProps, PodLogsOptions, PodLogsProps, PodMetricsContext, PodMetricsMatcher, PodNamesWithErrorsContext, PodNamesWithMetricsContext, PodScope, PodsTable, ResourceRef, ResourceUtilization, Router, ServerSideKubernetesAuthProvider, ServicesAccordions, clusterLinksFormatters, detectErrors, formatClusterLink, isKubernetesAvailable, kubernetesApiRef, kubernetesAuthProvidersApiRef, kubernetesPlugin, kubernetesProxyApiRef, kubernetesPlugin as plugin, useCustomResources, useEvents, useKubernetesObjects, useMatchingErrors, usePodLogs, usePodMetrics };
688
+ export { Cluster, ClusterContext, ClusterLinksFormatter, ClusterLinksFormatterOptions, ContainerCard, ContainerCardProps, ContainerScope, CronJobsAccordions, CustomResources, DeploymentResources, DetectedError, DetectedErrorsByCluster, DetectedErrorsContext, EntityKubernetesContent, EntityKubernetesContentProps, ErrorList, ErrorListProps, ErrorMatcher, ErrorPanel, ErrorReporting, ErrorSeverity, Events, EventsContent, EventsContentProps, EventsOptions, EventsProps, FixDialog, FixDialogProps, GoogleKubernetesAuthProvider, GroupedResponses, GroupedResponsesContext, HorizontalPodAutoscalerDrawer, IngressesAccordions, JobsAccordions, KubernetesApi, KubernetesAuthProviders, KubernetesAuthProvidersApi, KubernetesBackendClient, KubernetesContent, KubernetesDrawer, KubernetesDrawerContent, KubernetesObjects, KubernetesProxyApi, KubernetesProxyClient, KubernetesStructuredMetadataTableDrawer, LinkErrorPanel, PendingPodContent, PendingPodContentProps, PodAndErrors, PodDrawer, PodExecTerminal, PodExecTerminalDialog, PodExecTerminalProps, PodLogs, PodLogsDialog, PodLogsDialogProps, PodLogsOptions, PodLogsProps, PodMetricsContext, PodMetricsMatcher, PodNamesWithErrorsContext, PodNamesWithMetricsContext, PodScope, PodsTable, ResourceRef, ResourceUtilization, Router, ServerSideKubernetesAuthProvider, ServicesAccordions, clusterLinksFormatters, detectErrors, formatClusterLink, isKubernetesAvailable, kubernetesApiRef, kubernetesAuthProvidersApiRef, kubernetesPlugin, kubernetesProxyApiRef, kubernetesPlugin as plugin, useCustomResources, useEvents, useKubernetesObjects, useMatchingErrors, usePodLogs, usePodMetrics };