fix: manage hwlab buildkit runtime image

This commit is contained in:
Codex
2026-06-27 12:56:13 +00:00
parent 37a31e8416
commit 92b62a5e50
5 changed files with 142 additions and 88 deletions
+2
View File
@@ -190,6 +190,7 @@ export interface HwlabRuntimeWebProbeProjectManagementSpec {
export interface HwlabRuntimeBuildkitSpec {
readonly sidecarImage: string;
readonly sourceImage: string;
}
export interface HwlabRuntimeObservabilitySpec {
@@ -650,6 +651,7 @@ function buildkitConfig(value: unknown, path: string): HwlabRuntimeBuildkitSpec
const raw = asRecord(value, path);
return {
sidecarImage: stringField(raw, "sidecarImage", path),
sourceImage: stringField(raw, "sourceImage", path),
};
}