Add D601 platform-infra secret plane PoC

This commit is contained in:
Codex
2026-06-27 08:59:35 +00:00
parent 9a5cc21393
commit a78fa346d0
4 changed files with 1328 additions and 2 deletions
+4
View File
@@ -56,6 +56,10 @@ export async function runPlatformInfraCommand(config: UniDeskConfig, args: strin
const { runPlatformObservabilityCommand } = await import("../platform-infra-observability");
return await runPlatformObservabilityCommand(config, args.slice(1));
}
if (target === "secret-plane") {
const { runSecretPlaneCommand } = await import("../platform-infra-secret-plane");
return await runSecretPlaneCommand(config, args.slice(1));
}
if (target !== "sub2api") return unsupported(args);
if (action === "plan" || action === undefined) {
const planArgs = args.slice(2);