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
+2
View File
@@ -43,6 +43,7 @@ export function parseNodeScopedDelegatedOptions(domain: DelegatedNodeDomain, arg
dryRun: boolean;
wait: boolean;
rerun: boolean;
discardStaleGitops: boolean;
allowLiveDbRead: boolean;
timeoutSeconds: number;
originalArgs: string[];
@@ -69,6 +70,7 @@ export function parseNodeScopedDelegatedOptions(domain: DelegatedNodeDomain, arg
dryRun,
wait: args.includes("--wait"),
rerun: args.includes("--rerun"),
discardStaleGitops: args.includes("--discard-stale-gitops"),
allowLiveDbRead: args.includes("--allow-live-db-read"),
timeoutSeconds: positiveIntegerOption(args, "--timeout-seconds", NODE_RUNTIME_CICD_WAIT_WARNING_SECONDS, 3600),
originalArgs: [...args],