feat: add table to show nodes and add dropdown to add manager & workers

This commit is contained in:
Mauricio Siu
2024-05-17 02:56:50 -06:00
parent 42e9aa1834
commit 976d1f312f
10 changed files with 409 additions and 148 deletions

View File

@@ -1,6 +1,5 @@
import { ShowCertificates } from "@/components/dashboard/settings/certificates/show-certificates";
import { ShowRegistry } from "@/components/dashboard/settings/cluster/registry/show-registry";
import { ShowCluster } from "@/components/dashboard/settings/cluster/worker/show-workers";
import { ShowNodes } from "@/components/dashboard/settings/cluster/nodes/show-nodes";
import { DashboardLayout } from "@/components/layouts/dashboard-layout";
import { SettingsLayout } from "@/components/layouts/settings-layout";
import { validateRequest } from "@/server/auth/auth";
@@ -11,7 +10,7 @@ const Page = () => {
return (
<div className="flex flex-col gap-4 w-full">
<ShowRegistry />
<ShowCluster />
<ShowNodes />
</div>
);
};