@kici-dev/orchestrator 0.1.15 → 0.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app.d.ts +25 -0
- package/dist/approvals/apply-decision.d.ts +60 -0
- package/dist/approvals/approval-resolver.d.ts +66 -0
- package/dist/approvals/step-approval-bridge.d.ts +72 -0
- package/dist/approvals/team-membership-lookup.d.ts +13 -0
- package/dist/cache/user-cache.d.ts +1 -1
- package/dist/cli/api-client.d.ts +24 -0
- package/dist/cli/commands/firecracker/index.d.ts +11 -0
- package/dist/cli/commands/firecracker/provision.d.ts +13 -0
- package/dist/cli/commands/firecracker/teardown.d.ts +3 -0
- package/dist/cli/commands/firecracker/verify.d.ts +3 -0
- package/dist/cli/commands/scaler.d.ts +18 -0
- package/dist/cli/kici-admin.d.ts +10 -1
- package/dist/cli/service/image-digests.d.ts +21 -0
- package/dist/cli.js +3692 -411
- package/dist/cluster/peer-client.d.ts +23 -1
- package/dist/cluster/peer-handler.d.ts +9 -1
- package/dist/db/migrations/033_org_settings_approval.d.ts +19 -0
- package/dist/db/migrations/034_held_runs_generalize.d.ts +24 -0
- package/dist/db/types.d.ts +52 -1
- package/dist/diagnostics/bundle-writer.d.ts +1 -17
- package/dist/diagnostics/checks/firecracker-network.d.ts +13 -0
- package/dist/diagnostics/checks/index.d.ts +2 -1
- package/dist/diagnostics/fleet-collector.d.ts +52 -0
- package/dist/diagnostics/fleet-constants.d.ts +8 -0
- package/dist/diagnostics/fleet-selection.d.ts +15 -0
- package/dist/diagnostics/fleet-topology.d.ts +47 -0
- package/dist/diagnostics/fleet-wiring.d.ts +60 -0
- package/dist/environments/held-runs.d.ts +69 -1
- package/dist/firecracker/host-network.d.ts +83 -0
- package/dist/firecracker/persist.d.ts +14 -0
- package/dist/index.js +24 -6
- package/dist/orchestrator-core.d.ts +9 -1
- package/dist/pipeline/processor.d.ts +22 -0
- package/dist/routes/fleet.d.ts +20 -0
- package/dist/scaler/config.d.ts +4 -2
- package/dist/scaler/disk-guard.d.ts +27 -0
- package/dist/scaler/firecracker-backend.d.ts +18 -0
- package/dist/scaler/manager.d.ts +6 -0
- package/dist/scaler/nftables.d.ts +4 -0
- package/dist/scaler/reap-orphans.d.ts +27 -0
- package/dist/scaler/types.d.ts +2 -0
- package/dist/server.js +3205 -1214
- package/dist/stale-detector/stale-run-detector.d.ts +18 -0
- package/dist/standalone.js +2585 -1062
- package/dist/storage/filesystem.d.ts +2 -1
- package/dist/storage/s3.d.ts +2 -1
- package/dist/storage/types.d.ts +7 -0
- package/dist/ws/agent-handler.d.ts +32 -0
- package/dist/ws/dashboard-env-handler.d.ts +35 -0
- package/dist/ws/fleet-agent-collector.d.ts +23 -0
- package/installer-image-digests.json +7 -0
- package/package.json +6 -5
- package/sbom.spdx.json +62 -57
|
@@ -23,6 +23,8 @@ import type { ScalerManager } from '../scaler/manager.js';
|
|
|
23
23
|
import type { Dispatcher } from '../agent/dispatcher.js';
|
|
24
24
|
import type { AgentRegistry } from '../agent/registry.js';
|
|
25
25
|
import type { HeldRunStore } from '../environments/held-runs.js';
|
|
26
|
+
import type { StepApprovalBridge } from '../approvals/step-approval-bridge.js';
|
|
27
|
+
import type { AccessLogWriter } from '../audit/access-log.js';
|
|
26
28
|
export interface StaleRunDetectorDeps {
|
|
27
29
|
db: Kysely<Database>;
|
|
28
30
|
executionTracker: ExecutionTracker;
|
|
@@ -36,6 +38,12 @@ export interface StaleRunDetectorDeps {
|
|
|
36
38
|
scanIntervalMs: number;
|
|
37
39
|
/** Held run store for expiring overdue held runs. Optional -- if not set, held run cleanup is skipped. */
|
|
38
40
|
heldRunStore?: HeldRunStore;
|
|
41
|
+
/** Step-approval bridge — notified when a step-scoped hold expires so the waiting agent fails the step. Optional. */
|
|
42
|
+
stepApprovalBridge?: StepApprovalBridge;
|
|
43
|
+
/** Fail a whole run when a job/workflow-scoped approval hold expires. Optional. */
|
|
44
|
+
failRun?: (runId: string, reason: string) => Promise<void>;
|
|
45
|
+
/** Access-log writer for the orchestrator audit stream. Optional -- if not set, expiry audit rows (`held_run.expire`) are skipped. */
|
|
46
|
+
accessLogWriter?: AccessLogWriter;
|
|
39
47
|
}
|
|
40
48
|
export declare class StaleRunDetector {
|
|
41
49
|
private readonly db;
|
|
@@ -47,8 +55,18 @@ export declare class StaleRunDetector {
|
|
|
47
55
|
private readonly staleThresholdMs;
|
|
48
56
|
private readonly scanIntervalMs;
|
|
49
57
|
private readonly heldRunStore?;
|
|
58
|
+
private readonly stepApprovalBridge?;
|
|
59
|
+
private readonly failRun?;
|
|
60
|
+
private readonly accessLogWriter?;
|
|
50
61
|
private interval;
|
|
51
62
|
constructor(deps: StaleRunDetectorDeps);
|
|
63
|
+
/**
|
|
64
|
+
* Expire overdue approval holds. Routes each overdue hold by scope BEFORE the
|
|
65
|
+
* bulk status flip: step-scoped holds notify the waiting agent (which fails
|
|
66
|
+
* the step), job/workflow-scoped holds fail the whole run. Then the bulk
|
|
67
|
+
* `expireOverdue()` flips every overdue row to `expired`.
|
|
68
|
+
*/
|
|
69
|
+
private expireOverdueHolds;
|
|
52
70
|
/**
|
|
53
71
|
* Clean up orphaned jobs left in 'recovering' state from a previous orchestrator instance.
|
|
54
72
|
*
|