Skip to main content
Version: Next

KubernetesProxyClient.getPodLogs()

Home > @backstage/plugin-kubernetes-react > KubernetesProxyClient > getPodLogs

Signature:

getPodLogs({ podName, namespace, clusterName, containerName, previous, }: {
podName: string;
namespace: string;
clusterName: string;
containerName: string;
previous?: boolean;
}): Promise<{
text: string;
}>;

Parameters

Parameter

Type

Description

{ podName, namespace, clusterName, containerName, previous, }

{ podName: string; namespace: string; clusterName: string; containerName: string; previous?: boolean; }

**Returns:**

Promise<{ text: string; }>