docs: verify compatibility with OpenShell 0.0.113 and apple/container 1.3.0 - #52
Merged
Conversation
… 1.3.0 No driver change was needed. compute_driver.proto is byte-identical between 0.0.111 and 0.0.113, so the OpenShell side carried no risk. apple/container 1.3.0 is a minor release and did: one breaking CLI change (`--scheme auto` removed for image operations, which this driver never used), a tmpfsMounts() refactor on a path the driver does use, and a new default Kata kernel. So a baseline was captured on 1.2.2 before upgrading, and every check matched afterwards on 1.3.0: create -> Ready, exec (kernel 6.18.15, workload uid 998) policy still blocking egress tmpfs driver-config mount: tmpfs on /scratch type tmpfs (rw,relatime), writable restart adoption, then a clean delete leaving no VMs behind An already-configured guest kernel survives the upgrade, so ensureKernel() correctly skips re-downloading; the new default only affects fresh installs. Update the compatibility table, STATUS.md, the release footer and the contract note to the tested range. Signed-off-by: Vyncint Ng <vyncint@users.noreply.github.com>
…sh setup Verified from the 1.3.0 binaries: --recommended resolves to Kata 3.32.0 and extracts vmlinux-6.18.35-197-debug. setup calls --recommended on a machine with no kernel configured, so fresh installs land on that; an existing kernel is left untouched, which is why this machine stayed on vmlinux-6.18.15-186 through the upgrade. Worth stating because it is a debug build. Signed-off-by: Vyncint Ng <vyncint@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Tested the newer upstreams as asked. No driver change was needed — this is documentation only.
OpenShell 0.0.111 → 0.0.113
compute_driver.protois byte-identical between the two tags, so there was no contract risk. Verified live:setupderivedsupervisor:0.0.113and pulled it, then create → Ready →exec→ policy-blocked egress → clean delete.(Aside worth knowing:
supervisor:0.0.112returns 404 on ghcr — not every OpenShell release publishes a supervisor image. That is exactly the case the driver's fallback covers, and why deriving the tag from the gateway version needs one.)apple/container 1.2.2 → 1.3.0
A minor release, so I read its notes against our code before touching anything:
--scheme autoremoved for image operations--schemetmpfsMounts()refactored--tmpfs, so this needed testingensureKernel()and--kernelI captured a baseline on 1.2.2 before the upgrade so the comparison would mean something. Everything matched afterwards:
execkerneltmpfs on /scratch type tmpfs (rw,relatime), writableThe existing
default.kernel-arm64 → vmlinux-6.18.15-186survived the upgrade untouched, soensureKernel()correctly skips re-downloading — the new default kernel only affects fresh installs.Also found (not fixed here)
apple/container's
update-container.shrunssudo installer … >/dev/null 2>&1 || error "Installer failed", which swallows the real error. Run unprivileged, the mid-script sudo prompt is easy to miss and you get a bareError: Installer failedwith no cause. Running the whole script undersudoavoids it. That is upstream's script, not ours, but it is worth knowing whenupdate --all --container-versionis used.Verification
go build,go test -race,golangci-lint(0 issues),shellcheck install.sh,goreleaser check,govulncheck/gosec/gitleaks— all clean.