-
Notifications
You must be signed in to change notification settings - Fork 11
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
ioc update is confusing #705
Comments
.. I have to go 🙈 This is a challenging question, because I have no finite answer. Let's start digging into the issue by looking at regular updates of a release. (I will leave out HardenedBSD here for the moment, hoping not to upset @lattera. In fact updates on HardenedBSD are easier, which is why I find it fair to focus on issues with FreeBSD updates).
The lazy way of keeping a jail updates is to not pin a release patch level (e.g. What's the problem with mergemaster? Well, it is an interactive process. Although it does not always read user input, it still could wait for input at any time. Because libioc is a non-interactive library, we would have to automate the users input decision or would require an entire channel back to a human. Lame! Now upgrading a distribution opens another can of worms. We would have to know from which release we want to upgrade to another. This would imply that release updates would have to be fetched from any older release on a host to any newer. I neither find it acceptable while fetching updates for one release, not do I like the idea of doing it when attempting to apply an upgrade to a jail. Also upgrading a jail to a newer release, would make it depend on both. It depends on the old release because it is the ZFS clone origin of the jail root dataset, which only goes away by re-creating a jail from another release. It also would depend on the new release, because it would get the mountpoints from there. Having all jails updated to a newer release, but have them still depend on another, unreleated release seems very unfortunate and hard to explain when attempting to delete a release that no more jail points to. Personally I use the import/export feature to create a differential update of the jail content against its release. The archive creation or extraction can be omitted, so that the process can be more efficient than manually using the full export and re-import. The publicly available code does not yet support this and also lacks the ability to override config properties on import. Failing on this seems super evil to me, because often a broken jail is noticed too late. I would be super happy about feedback regarding the export/import feature. If no breakage is reported, I'd feel more confident to publish a migration path that decouples a jail from its release and re-creates. Running mergemaster in the "new" jail is still required by the way, and of course is an interactive progress. So you won't get around doing some manual work. @kmoore134 told me he is working on a solution for non-interactive upgrades, but until that is available, there is no way around user interaction. I emphasize users to use provisioning instead, so that jails can be re-created from scratch at any time. Using another jail that is frequently provisioned as template for workers turned out to be less pain than juggling with individual jails in production. |
I'M SO UPSET! (Just kidding!) Even updates to a release branch may impact The difference is that HardenedBSD uses |
I'm also doing provisioning and don't even use update. Didn't try import/export yet, but seems a nice feature to kinda store prebuilt images that can be used during new jail creation. Would be nice to hear how others are using this command and if not used many maybe removing would be good option. |
CBSD
https://www.bsdstore.ru/de/11.1/wf_jupgrade_ssi.html#jail_etcupdate iocage
ezjail
Unattended upgrades appear to be an unsolved problem in the jail manager world. Although I recommend provisioning jails with the controller of choice in automated environments, there is good reason to use ioc to maintain persistent jails. After a jail (or its basejail release) were updated, it is recommended to manually run When upgrading to a newer release, I believe our best bet is to allow the importer to override config properties, so that the jail is created from the new release. For example: ioc export my-old-jail /tmp/my-old-jail.txz
ioc import my-new-jail /tmp/my-old-jail.txz -o release=12.0-RELEASE |
FWIW, last year, I opened a Perhaps this would be a good time to collaborate on a solution that would fit both FreeBSD's and HardenedBSD's use cases. :) |
I'm not sure this even works but last time I tried it didn't. Checking wiki page I see the idea is to use
ioc exec foo freebsd-update
. Would it be better to then remove the command?While on this topic. What is the best way to do an upgrade from 11.x to 12.x?
Hmm, noticed this after trying via exec
The text was updated successfully, but these errors were encountered: