Rename experimental Void image to void
Replace the old `void-exp` repository defaults with `void` so the Make targets, registration helper, example config, verification messaging, and sample test fixtures all line up with the new managed image name. Keep the scope to repo-facing naming only: config overrides, helper output, and test fixtures now expect `void`, while runtime compatibility for existing local `void-exp` VMs remains an operational concern outside this commit. Validation: go test ./..., make build, and a local `banger vm create --image void` smoke boot with ssh and opencode ports up.
This commit is contained in:
parent
70bc6d07d0
commit
497e6dca3d
8 changed files with 14 additions and 14 deletions
|
|
@ -50,7 +50,7 @@ log_level = "debug"
|
|||
web_listen_addr = ""
|
||||
firecracker_bin = "/opt/firecracker"
|
||||
ssh_key_path = "/tmp/custom-key"
|
||||
default_image_name = "void-exp"
|
||||
default_image_name = "void"
|
||||
auto_stop_stale_after = "1h"
|
||||
stats_poll_interval = "15s"
|
||||
metrics_poll_interval = "30s"
|
||||
|
|
@ -81,7 +81,7 @@ default_dns = "9.9.9.9"
|
|||
if cfg.SSHKeyPath != "/tmp/custom-key" {
|
||||
t.Fatalf("SSHKeyPath = %q", cfg.SSHKeyPath)
|
||||
}
|
||||
if cfg.DefaultImageName != "void-exp" {
|
||||
if cfg.DefaultImageName != "void" {
|
||||
t.Fatalf("DefaultImageName = %q", cfg.DefaultImageName)
|
||||
}
|
||||
if cfg.AutoStopStaleAfter != time.Hour {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue