@kinvolk/headlamp-plugin
Version:
The needed infrastructure for building Headlamp plugins.
16 lines (15 loc) • 757 B
TypeScript
import { ApiError } from '../../lib/k8s/apiProxy';
import Pod from '../../lib/k8s/pod';
import { PodMetrics } from '../../lib/k8s/PodMetrics';
import { SimpleTableProps } from '../common';
export declare function makePodStatusLabel(pod: Pod, showContainerStatus?: boolean): import("react/jsx-runtime").JSX.Element;
export interface PodListProps {
pods: Pod[] | null;
metrics: PodMetrics[] | null;
hideColumns?: ('namespace' | 'restarts')[];
reflectTableInURL?: SimpleTableProps['reflectInURL'];
noNamespaceFilter?: boolean;
errors?: ApiError[] | null;
}
export declare function PodListRenderer(props: PodListProps): import("react/jsx-runtime").JSX.Element;
export default function PodList(): import("react/jsx-runtime").JSX.Element;