-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
post-pull pre-stage stage #640
Comments
Interesting idea! It makes a lot of sense to me in general. One concern I have is around the shared state in |
I think anything executed here should be idempotent (being executed > 1 times is equivalent to 1 time) and crash safe (i.e. it can be killed at any point). That's how everything in the bootc/ostree stack is designed; i.e. if the kernel panics in the middle of an OS update, you only have image A or B, never a half-written mess. This can be a tricky property to achieve with arbitrary code. Actually, historically what happens during |
I think we should consider using additional image stores. All "pinned" images of one given bootc image can be pulled in a separate store. The store can then be made accessible to Podman by adding it to the storage.conf (which now supports drop-in files). When bootc-updating to a new bootc image, the new pinned images can be pulled to yet another store. After a successful pull (or during boot), bootc can switch the additional image storage in storage.conf to the new one. That should give us the desired idempotent behavior along with benefit of the "pinnged" images being read-only for Podman. Removing old images would then boil down to |
(This issue is about the generic "run arbitrary code in new root" topic - WDYT about keeping #128 being focused on the "logically bound" container topic?) I cleaned up #128 to clarify it's now just about "logically bound", as distinct from physically bound. |
SGTM |
…ring-1.1.0 build(deps): bump widestring from 1.0.2 to 1.1.0
This relates to:
Basically...I think it'd be a powerful general feature if we supported a flow that did:
One simple way to do this would be to define a new
bootc-pre-stage.target
systemd unit that we run in between what currently happens when one typesbootc upgrade
.This would be a clearly very powerful general mechanism that would allow implementing things like "logically bound container images" outside of bootc core code itself. A base image (or user code) could define which container images to pull via whatever mechanisms and file format it wants.
One could do arbitrary things like check compatibility (relates to #632 and #610)
The downside of course is that being so general, it'd be easy to use for things that would probably be best done elsewhere. I think we'd still eventually want higher level and more declarative/opinionated mechanisms for some of the problems here (especially the container binding one).
(This also tangentially relates to #2 in that it'd probably be a bit more elegant if we internally split up bits of the bootc upgrade process internally into units)
But...in ostree we already merged e.g. ostreedev/ostree#2569 which is currently a very special case.
Actually, a notable detail here is that
bootc-pre-stage.target
as proposed would get mutable access to the current/etc
and the global/var
, i.e. it'd be ordered beforeostree-finalize-staged.target
.The text was updated successfully, but these errors were encountered: