tftsr-devops_investigation/src/components/Kubernetes/index.tsx
Shaun Arman f5fb9bd0e2 feat(kube): add Kubernetes management GUI components
- Add ClusterList, PortForwardList, AddClusterModal, PortForwardForm components
- Add KubernetesPage component with cluster and port forward management
- Add TypeScript types for Kubernetes management (ClusterInfo, PortForwardRequest, PortForwardResponse)
- Add 6 IPC commands to tauriCommands.ts for cluster and port forward management
- Write unit tests for Kubernetes IPC commands (6 tests)
- All 308 Rust tests passing
- All 98 frontend tests passing
- TypeScript type check passing
- Project builds successfully
2026-06-06 12:55:14 -05:00

5 lines
204 B
TypeScript

export { ClusterList } from "./ClusterList";
export { PortForwardList } from "./PortForwardList";
export { AddClusterModal } from "./AddClusterModal";
export { PortForwardForm } from "./PortForwardForm";