@kinvolk/headlamp-plugin
Version:
The needed infrastructure for building Headlamp plugins.
14 lines (13 loc) • 596 B
TypeScript
import { KubeObject } from '../../../lib/k8s/KubeObject';
interface RevisionHistorySectionProps {
/** The resource to show revision history for */
resource: KubeObject;
}
/**
* RevisionHistorySection shows a table of revision history for rollbackable resources.
* Displays revision number, creation date, container images, and current status.
*
* This is added as an extraSection on Deployment, DaemonSet, and StatefulSet details pages.
*/
export default function RevisionHistorySection(props: RevisionHistorySectionProps): import("react/jsx-runtime").JSX.Element | null;
export {};