The `image build` flow spun up a transient Firecracker VM, SSHed in, and ran a large bash provisioning script to derive a new managed image from an existing one. It overlapped heavily with the golden- image Dockerfile flow (same mise/docker/tmux/opencode install logic duplicated in Go as `imagemgr.BuildProvisionScript`) and had far more machinery: async op state, RPC begin/status/cancel, webui form + operation page, preflight checks, API types, tests. For custom images, writing a Dockerfile is simpler and more reproducible. Removed end-to-end: - CLI `image build` subcommand + `absolutizeImageBuildPaths`. - Daemon: BuildImage method, imagebuild.go (transient-VM orchestration), image_build_ops.go (async begin/status/cancel), imagemgr/build.go (the 247-line provisioning script generator and all its append* helpers), validateImageBuildPrereqs + addImageBuildPrereqs. - RPC dispatches for image.build / .begin / .status / .cancel. - opstate registry `imageBuildOps`, daemon seam `imageBuild`, background pruner call. - API types: ImageBuildParams, ImageBuildOperation, ImageBuildBeginResult, ImageBuildStatusParams, ImageBuildStatusResult; model type ImageBuildRequest. - Web UI: Backend interface methods, handlers, form, routes, template branches (images.html build form, operation.html build branch, dashboard.html Build button). - Tests that directly exercised BuildImage. Doctor polish (task C): - Drop the "image build" preflight section entirely (its raison d'être is gone). - Default-image check now accepts "not local but in imagecat" as OK: vm create auto-pulls on first use. Only flag when the image is neither locally registered nor in the catalog. Net: 24 files touched, 1,373 lines deleted, 25 added. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
125 lines
5.1 KiB
HTML
125 lines
5.1 KiB
HTML
{{define "image_list_content"}}
|
|
<div class="section-head">
|
|
<p class="muted">Manage registered rootfs/kernel stacks and promote unmanaged experiments into daemon-owned artifacts.</p>
|
|
<div class="stack-inline">
|
|
<a class="button secondary" href="/images/register">Register Image</a>
|
|
</div>
|
|
</div>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Managed</th>
|
|
<th>Docker</th>
|
|
<th>Rootfs</th>
|
|
<th>Created</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range .Images}}
|
|
<tr>
|
|
<td><a class="table-link" href="/images/{{.ID}}">{{.Name}}</a></td>
|
|
<td>{{formatBool .Managed}}</td>
|
|
<td>{{formatBool .Docker}}</td>
|
|
<td><code>{{.RootfsPath}}</code></td>
|
|
<td>{{relativeTime .CreatedAt}}</td>
|
|
</tr>
|
|
{{else}}
|
|
<tr><td colspan="5" class="muted">No images registered.</td></tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
{{end}}
|
|
|
|
{{define "image_register_content"}}
|
|
<p class="muted">Register an existing host-side image stack. Paths stay on the host; nothing is uploaded through the browser.</p>
|
|
{{if .ErrorMessage}}
|
|
<div class="inline-error">{{.ErrorMessage}}</div>
|
|
{{end}}
|
|
<form method="post" action="/images/register" class="form-grid">
|
|
{{template "csrf_field" .}}
|
|
<label><span>Name</span><input type="text" name="name" value="{{.ImageRegisterForm.Name}}"></label>
|
|
<label class="picker-field">
|
|
<span>Rootfs Path</span>
|
|
<div class="picker-input">
|
|
<input type="text" name="rootfs_path" value="{{.ImageRegisterForm.RootfsPath}}" data-picker-input>
|
|
<button type="button" class="button secondary" data-picker-target="rootfs_path" data-picker-kind="file">Browse</button>
|
|
</div>
|
|
</label>
|
|
<label class="picker-field">
|
|
<span>Work Seed Path</span>
|
|
<div class="picker-input">
|
|
<input type="text" name="work_seed_path" value="{{.ImageRegisterForm.WorkSeedPath}}" data-picker-input>
|
|
<button type="button" class="button secondary" data-picker-target="work_seed_path" data-picker-kind="file">Browse</button>
|
|
</div>
|
|
</label>
|
|
<label class="picker-field">
|
|
<span>Kernel Path</span>
|
|
<div class="picker-input">
|
|
<input type="text" name="kernel_path" value="{{.ImageRegisterForm.KernelPath}}" data-picker-input>
|
|
<button type="button" class="button secondary" data-picker-target="kernel_path" data-picker-kind="file">Browse</button>
|
|
</div>
|
|
</label>
|
|
<label class="picker-field">
|
|
<span>Initrd Path</span>
|
|
<div class="picker-input">
|
|
<input type="text" name="initrd_path" value="{{.ImageRegisterForm.InitrdPath}}" data-picker-input>
|
|
<button type="button" class="button secondary" data-picker-target="initrd_path" data-picker-kind="file">Browse</button>
|
|
</div>
|
|
</label>
|
|
<label class="picker-field">
|
|
<span>Modules Directory</span>
|
|
<div class="picker-input">
|
|
<input type="text" name="modules_dir" value="{{.ImageRegisterForm.ModulesDir}}" data-picker-input>
|
|
<button type="button" class="button secondary" data-picker-target="modules_dir" data-picker-kind="dir">Browse</button>
|
|
</div>
|
|
</label>
|
|
<label class="checkbox">
|
|
<input type="checkbox" name="docker" {{if .ImageRegisterForm.Docker}}checked{{end}}>
|
|
<span>Mark image as Docker-ready</span>
|
|
</label>
|
|
<div class="form-actions">
|
|
<a class="button secondary" href="/images">Cancel</a>
|
|
<button class="button" type="submit" {{if not .MutationAllowed}}disabled{{end}}>Register Image</button>
|
|
</div>
|
|
</form>
|
|
{{end}}
|
|
|
|
{{define "image_show_content"}}
|
|
<section class="detail-grid">
|
|
<article class="detail-card">
|
|
<h2>{{.Image.Name}}</h2>
|
|
<dl>
|
|
<dt>ID</dt><dd><code>{{.Image.ID}}</code></dd>
|
|
<dt>Managed</dt><dd>{{formatBool .Image.Managed}}</dd>
|
|
<dt>Docker</dt><dd>{{formatBool .Image.Docker}}</dd>
|
|
<dt>Used By</dt><dd>{{.ImageUsers}} VM(s)</dd>
|
|
</dl>
|
|
</article>
|
|
<article class="detail-card">
|
|
<h2>Artifacts</h2>
|
|
<dl>
|
|
<dt>Rootfs</dt><dd><code>{{.Image.RootfsPath}}</code></dd>
|
|
<dt>Work Seed</dt><dd>{{if .Image.WorkSeedPath}}<code>{{.Image.WorkSeedPath}}</code>{{else}}-{{end}}</dd>
|
|
<dt>Kernel</dt><dd><code>{{.Image.KernelPath}}</code></dd>
|
|
<dt>Initrd</dt><dd>{{if .Image.InitrdPath}}<code>{{.Image.InitrdPath}}</code>{{else}}-{{end}}</dd>
|
|
<dt>Modules</dt><dd>{{if .Image.ModulesDir}}<code>{{.Image.ModulesDir}}</code>{{else}}-{{end}}</dd>
|
|
</dl>
|
|
</article>
|
|
<article class="detail-card">
|
|
<h2>Lifecycle</h2>
|
|
<dl>
|
|
<dt>Created</dt><dd>{{relativeTime .Image.CreatedAt}}</dd>
|
|
<dt>Updated</dt><dd>{{relativeTime .Image.UpdatedAt}}</dd>
|
|
<dt>Artifact Dir</dt><dd>{{if .Image.ArtifactDir}}<code>{{.Image.ArtifactDir}}</code>{{else}}-{{end}}</dd>
|
|
</dl>
|
|
</article>
|
|
</section>
|
|
|
|
<div class="stack-inline">
|
|
{{if not .Image.Managed}}
|
|
<form method="post" action="/images/{{.Image.ID}}/promote">{{template "csrf_field" .}}<button class="button" type="submit" {{if not .MutationAllowed}}disabled{{end}}>Promote to Managed</button></form>
|
|
{{end}}
|
|
<form method="post" action="/images/{{.Image.ID}}/delete" data-confirm="Delete image {{.Image.Name}}?">{{template "csrf_field" .}}<button class="button danger" type="submit" {{if not .MutationAllowed}}disabled{{end}}>Delete Image</button></form>
|
|
</div>
|
|
{{end}}
|