I am using unattended-upgrades across multiple servers. I would like package updates to be rolled out gradually, either randomly or to a subset of test/staging machines first. Is there a way to do that for APT on Ubuntu?

An obvious option is to set some machines to update on Monday and the others to update on Wednesday, but that only gives me only weekly updates…

The goal of course is to avoid a Crowdstrike-like situation on my Ubuntu machines.

edit: For example. An updated openssh-server comes out. One fifth of the machines updates that day, another fifth updates the next day, and the rest updates 3 days later.

  • @just_another_person
    link
    12 months ago

    It’s called a staging environment. You have servers you apply changes to first before going to production.

    I assume you mean this for home though, so take a small number of your machines and have them run unattended upgrades daily, and set whatever you’re worried about to only run them every few weeks or something.

        • @[email protected]OP
          link
          fedilink
          32 months ago

          Is there anything about staggered upgrades and staging environments in there? Because obviously I had read it before posting…

            • @[email protected]OP
              link
              fedilink
              3
              edit-2
              2 months ago

              I invite you to re-read the second paragraph of my post.

              You’re just throwing things I already listed back at me. I mentioned a staging environment, I mentioned a schedule was a (bad) option.

              • Snot Flickerman
                link
                fedilink
                English
                0
                edit-2
                2 months ago

                An obvious option is to set some machines to update on Monday and the others to update on Wednesday, but that only gives me only weekly updates…

                You can literally schedule them by the minute, but okay buddy.

                I’ll never not be stumped by people who are looking for answers shitting all over those answers.

                • @[email protected]OP
                  link
                  fedilink
                  32 months ago

                  Maybe I’m not being clear.

                  I want to stagger updates, giving time to make sure they work before they hit the whole fleet.

                  If a new SSH version comes out on Tuesday, I want it installed to 1/3 of the machines on Tuesday, another third on Wednesday, and the rest in Friday. Or similar.

                  Having machines update on a schedule means I have much less frequent updates and doesn’t even guarantee that they hit the staging environment first (what if they’re released just before the prod update time?)

                  • Snot Flickerman
                    link
                    fedilink
                    English
                    32 months ago

                    You could set your staging environment PCs to be checking for updates hourly and installing them daily.

                    You could set your other PCs to just be downloading the updates daily but only install them on certain days of the week.

                    That means your staging servers could be constantly updated, but your other servers only download the updates, but wait until a certain day to install them.

                    I’m not sure you can set the timer based on a specific package being updated without some bash scripting alongside checking for which things are getting updated in your staging servers, and then using that script to update the unattendedupgrades control files on your second and third tier PCs in the fleet to adjust when they’re supposed to install those updates.

                    I can’t currently find anything on prohibiting specific packages or only installing selected updates from the downloaded updates. Perhaps you could use a mix of systemd downloading the updates and a cronjob for installing them?


                    Further, Ubuntu/Debian is technically already doing this as well. They already have staggered rollouts in APT.

                    If you’ve ever updated via command line and seen the phrase “These packages have been kept back” or “these following upgrades have been deferred due to phasing” it’s because they’re purposefully withholding those updates from you, to make sure they roll out safely to everyone. That way, if a handful of users who get a phased rollout have issues, the rollout can be undone before it goes out to everyone.

                  • @Starbuck
                    link
                    2
                    edit-2
                    2 months ago

                    To actually answer your question, you need some kind of job scheduling service that manages the whole operation. Whether that’s SSM or Ansible or something else. With Ansible, you can set a parallel parameter that will say that you only update 3 or so at a time until they are all done. If one of those upgrades fails, then it will abort the process. There’s a parameter to make it die if any host fails, but I don’t recall it right now.