-
Notifications
You must be signed in to change notification settings - Fork 15
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
File-based OLM catalog with history #1308
Merged
Merged
Conversation
This file contains 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
MikeEdgar
force-pushed
the
issue-1307
branch
2 times, most recently
from
December 13, 2024 17:21
20ac49b
to
fe7e1db
Compare
MikeEdgar
changed the title
[WIP] File-based OLM catalog with history
File-based OLM catalog with history
Dec 13, 2024
MikeEdgar
force-pushed
the
issue-1307
branch
3 times, most recently
from
December 20, 2024 16:22
ff1603c
to
ab892e9
Compare
MikeEdgar
force-pushed
the
issue-1307
branch
from
December 23, 2024 13:50
ab892e9
to
eb1a013
Compare
Signed-off-by: Michael Edgar <[email protected]>
Signed-off-by: Michael Edgar <[email protected]>
Signed-off-by: Michael Edgar <[email protected]>
Signed-off-by: Michael Edgar <[email protected]>
Signed-off-by: Michael Edgar <[email protected]>
Signed-off-by: Michael Edgar <[email protected]>
Signed-off-by: Michael Edgar <[email protected]>
Signed-off-by: Michael Edgar <[email protected]>
Signed-off-by: Michael Edgar <[email protected]>
jankalinic
approved these changes
Jan 7, 2025
Quality Gate passedIssues Measures |
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.
Closes #1307
This change introduces an automated file-based OLM catalog [1] to the project. Previously, the catalog was generated fresh with a single bundle included for the head of the current branch (snapshot workflow) or the release tag (release workflow). Here, we will keep the catalog files in source control and add/update the current/release version to the
alpha
channel during the release.Additional OLM package channels could be added in the future, but only the
alpha
channel will use the automation. By using the maven-release-plugin preparation and completion hooks the previous-snapshot
bundle name is updated to match the release, and the new `-snapshot is added as a replacement of the just-released version.A check is also added to the
integration
workflow to ensure the current project version has an entry in thealpha
channel.Between releases, the current snapshot entry in the channel may be modified (i.e. change the
replaces
or addskips
orskipRange
[2]), but a package name matching the current project version will always be enforced.[1] https://olm.operatorframework.io/docs/reference/file-based-catalogs
[2] https://olm.operatorframework.io/docs/concepts/olm-architecture/operator-catalog/creating-an-update-graph/