feat: add JD01 YAML-first deployment support

This commit is contained in:
Codex
2026-06-29 08:13:34 +00:00
parent fe917bec4a
commit 076c4b643d
49 changed files with 10909 additions and 5223 deletions
@@ -34,6 +34,10 @@ interface TrafficOptions {
type EgressProxyOptions = BenchmarkOptions | TrafficOptions;
export async function runPlatformInfraEgressProxyCommand(_config: UniDeskConfig, args: string[]): Promise<Record<string, unknown> | RenderedCliResult> {
if (args[0] === "host") {
const { runPlatformInfraHostProxyCommand } = await import("./platform-infra-host-proxy");
return await runPlatformInfraHostProxyCommand(_config, args.slice(1));
}
if (args[0] === "k3s-build-benchmark") return runK3sBuildBenchmarkCommand(args.slice(1));
const options = parseEgressProxyOptions(args);
if (options.action === "traffic") {