-
Notifications
You must be signed in to change notification settings - Fork 50
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
anaconda: preview #522
anaconda: preview #522
Conversation
The `Preview` property on Anaconda images and pipelines replaces the previously hardcoded `Final` property being passed to the Buildstamp stage. Note that this is, again, a duplication of efforts so let's find out how to pass the value of `Preview` on from the API.
56b33c2
to
faffa78
Compare
Do we also need to set this for the CoreOS installer? |
This needs to be set for any anaconda installer image. It controls whether anaconda shows the pre-release warnings, which we always want for any pre-release image, regardless of the payload. For the separate coreos installer...I dunno if that implements any pre-release warnings at present. I am not sure the logic here works (though I don't know offhand exactly how we determine what the Branched number is). The problem is when we come to build the RCs for Final. We do not want to put the pre-release warnings on those images, because these are the composes we are aiming to actually release - ideally we build just one RC, and ship it. But at the time we build the RCs, the release is still Branched, it has not yet become a stable release. This is why pungi's logic for this uses the compose "label" and considers composes with a label starting "RC-" to be "final". That is the label format used (only) for final release candidate composes. |
Right, the CoreOS installer is not an Anaconda installer but does have a buildstamp file. I don't know if it does anything regarding previews. As for the other clarification: that's a good point and a reason why this value should really be filled in from the requesting side. We have two options for that:
I'll CC people for that part: @thozza, @achilleas-k, and @ondrejbudai: for our Fedora builds we'd like to set a certain value in the buildstamp file that indicates if the image is a preview release. This information is known to pungi, in turn to koji, but after that we lose the information. How should we approach this? And I'll also poke @pcdubs and @nullr0ute as the IoT and Minimal images are also affected by this logic. |
Small correction: right now the info is not passed through to the koji-osbuild layer by pungi, but doing so would be trivial (see diff in #515 ). |
Also I don't think this is actually Fedora specific, I believe it also affects RHEL. We want pre-release RHEL images to clearly indicate their status just as much as (or more than) fedora ones, I would think. |
Note it may still be practical to do something like this as a temporary workaround. I think osbuild does know the value I'm calling "label" (that's what productmd calls it) at some level, because it winds up in the filename. In e.g. edit: siiiigh. In conclusion, names are awful and I hate all this nonsense. Anyway, if that pungi/koji "version" is making it down to osbuild in the right context, we could do something like "if the version has 'Beta' in it, set isfinal false". However, that doesn't help for nightlies, because on those the version is just "40"... |
It might actually be logically easier (for this "have osbuild figure out whether the image is final, as a workaround" path) if we default to not final (I.e. pre-release) and figure out a condition to decide the images are final. |
@AdamWill exposing it in the API and letting the build configuration (from pungi/koji) set it should solve the issue, right? Sorry, I'm just not sure if I'm understanding all the comments completely. |
yes, if we can do that, it will definitely solve the issue. I was just struggling to figure out how to implement that. Some of the discussion is around having osbuild "figure out" whether the image should be considered final - essentially duplicating what pungi does - as a possible workaround/short-term fix for this, if fixing it 'properly' is too hard to do quickly. That's what this PR is trying to do (only it won't really work, as written). |
@AdamWill It depends, this fix is quick it'll take me a bit to work this through My suggestion is; merge this PR for short term, leave open the issue to keep track of this for the service side of it. I'm also open to closing this PR. |
yeah...merging this right now would dtrt in practice at least until final. even for final...if we only have non-blocking images built by osbuild that actually run anaconda (is it just the experimental osbuild workstation live, or am I forgetting something?), it's not critical that this would make those still show the pre-release warning, I guess... I was going to try and whip up a variant that would actually give the correct results, I might still try and do that, but it's not urgent. |
oh, we build IoT images with osbuild, I guess, and IoT has an installer image. so we would somehow want to make sure that for F40 final that image does not show pre-release warnings. |
Alright, let's merge this and start pushing it up the stack to reach the service while we do the proper fix in parallel. For me, adding it as a customization and putting the control in the builders hands is better than trying to be smart about it. |
I moved #526 ahead of this PR in the merge-queue which should make it pass. |
Has this been deployed yet? It looks like the osbuild ws live in the latest F40 beta candidate still doesn't have the pre-release warnings. |
No, this is currently following our normal release schedule (which means it takes 1-2 weeks for it to end up on production). Does it need to go faster? I thought this was (for now) a relatively low-priority change :) |
it's not disastrous since the image it affects is not release blocking, it just would've been nice to have it fixed for the Beta. no big deal, I should've let you know. |
OK, so this has now gone wrong exactly the way I thought it would: we have F40 Final-targeted images showing the warnings when they shouldn't.
The IoT case is awkward because IoT doesn't have separate 'candidate' composes. It runs composes every day automatically, which in productmd terms are 'candidate' composes not 'nightly' composes (a difference from the main Fedora nightly composes), and we just pick one to release. probably all we can do here is implement some kind of lever for the IoT team to turn 'isFinal' on or off when they want to. The Workstation case should be possible to handle better, though, because we should be able to distinguish when we're building an image as part of an RC compose and set it as final. |
To write this down somewhere so I don't forget it, here's how this works for installer images not built by osbuild. Pungi has this heuristic which decides that any compose which has a label and whose label starts "RC-", "Update-", or "SecurityFix-" is 'supported'. When generating lorax commands, the two Pungi phases for building installer images using lorax - https://pagure.io/pungi/blob/master/f/pungi/phases/ostree_installer.py and https://pagure.io/pungi/blob/master/f/pungi/phases/buildinstall.py - use that This gets things right for mainline Fedora composes - nightlies and Beta candidates (and Alpha candidates, when we did those) get the warnings, Final candidates (which have "RC-" labels) do not. (I assume it also gets things right for RHEL composes, of course). For Fedora IoT composes it just meant they never, ever showed the warnings, because all IoT composes look more or less like "Final candidates" - they are all candidate composes for the RC milestone. Of course this wasn't really correct but we never bothered trying to fix it. |
This makes me think that the most reasonable solution would be to make this customizable using BP customizations, which can be passed by Pungi when triggering the image build. IOW do not have the pre-release defined for specific Fedora versions in our tooling... |
yeah, that might well overall be the best, and matching how the old tools work. |
Don't hardcode the
Final
value being passed to the buildstamp stage as reported in #515. We mark Anaconda based images asPreview
which is invertedFinal
.In other build systems this information comes from pungi which passes it on to koji which then writes it correctly into the image. I'd like for us to support the same but that would involve passing it down the API so let's start here with a small duplication of efforts.
I could be convinced to call the property
Final
instead so we don't deal with the inversion but it felt more natural to mark images as preview images than saying they're the "final" artifact.