This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
Remove Bundle API and its controller #774
Merged
ncdc
merged 7 commits into
operator-framework:main
from
varshaprasad96:remove/bundle-api
Jan 16, 2024
Merged
Remove Bundle API and its controller #774
ncdc
merged 7 commits into
operator-framework:main
from
varshaprasad96:remove/bundle-api
Jan 16, 2024
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
openshift-ci
bot
added
the
do-not-merge/work-in-progress
Indicates that a PR should not merge because it is a work in progress.
label
Dec 18, 2023
varshaprasad96
commented
Dec 18, 2023
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #774 +/- ##
==========================================
+ Coverage 20.62% 26.32% +5.70%
==========================================
Files 14 9 -5
Lines 1086 809 -277
==========================================
- Hits 224 213 -11
+ Misses 812 550 -262
+ Partials 50 46 -4 ☔ View full report in Codecov by Sentry. |
varshaprasad96
force-pushed
the
remove/bundle-api
branch
5 times, most recently
from
December 21, 2023 18:41
143f0c2
to
fa65678
Compare
varshaprasad96
changed the title
wip: remove bundle controller
Remove Bundle API and its controller
Dec 21, 2023
openshift-ci
bot
removed
the
do-not-merge/work-in-progress
Indicates that a PR should not merge because it is a work in progress.
label
Dec 21, 2023
varshaprasad96
force-pushed
the
remove/bundle-api
branch
from
December 21, 2023 18:54
fa65678
to
1e3fd2c
Compare
openshift-merge-robot
added
the
needs-rebase
Indicates a PR cannot be merged because it has merge conflicts with HEAD.
label
Jan 6, 2024
ncdc
reviewed
Jan 8, 2024
varshaprasad96
force-pushed
the
remove/bundle-api
branch
2 times, most recently
from
January 10, 2024 17:22
4398792
to
ca3e38f
Compare
openshift-merge-robot
removed
the
needs-rebase
Indicates a PR cannot be merged because it has merge conflicts with HEAD.
label
Jan 10, 2024
varshaprasad96
force-pushed
the
remove/bundle-api
branch
from
January 10, 2024 22:16
ca3e38f
to
4f54625
Compare
joelanford
reviewed
Jan 11, 2024
joelanford
reviewed
Jan 11, 2024
joelanford
reviewed
Jan 11, 2024
joelanford
reviewed
Jan 11, 2024
joelanford
reviewed
Jan 11, 2024
joelanford
reviewed
Jan 11, 2024
joelanford
reviewed
Jan 11, 2024
joelanford
reviewed
Jan 11, 2024
joelanford
reviewed
Jan 11, 2024
joelanford
reviewed
Jan 11, 2024
joelanford
reviewed
Jan 11, 2024
joelanford
reviewed
Jan 11, 2024
joelanford
reviewed
Jan 15, 2024
joelanford
reviewed
Jan 15, 2024
joelanford
reviewed
Jan 15, 2024
joelanford
reviewed
Jan 15, 2024
joelanford
reviewed
Jan 15, 2024
manifests/base/apis/crds/patches/bundledeployment_validation.yaml
Outdated
Show resolved
Hide resolved
varshaprasad96
force-pushed
the
remove/bundle-api
branch
3 times, most recently
from
January 15, 2024 19:36
a17a695
to
d3a6a3b
Compare
ncdc
reviewed
Jan 15, 2024
ncdc
reviewed
Jan 15, 2024
varshaprasad96
force-pushed
the
remove/bundle-api
branch
from
January 15, 2024 20:13
d3a6a3b
to
9a85b4a
Compare
joelanford
previously approved these changes
Jan 16, 2024
unpacking. Signed-off-by: Varsha Prasad Narsing <[email protected]>
Signed-off-by: Varsha Prasad Narsing <[email protected]>
Signed-off-by: Varsha Prasad Narsing <[email protected]>
Signed-off-by: Varsha Prasad Narsing <[email protected]>
Signed-off-by: Varsha Prasad Narsing <[email protected]>
This commit introduces a new condition to indicate whether the bundle has been uploaded successfully by the uploadmgr. Once the upload is successful, the reconciler further starts unpacking the contents. Signed-off-by: Varsha Prasad Narsing <[email protected]>
The commit does the following: 1. Fix bundleDeployment names to be camelcase. 2. Remove rukpakctl, upload source and relevant upload mgr code. 3. Remove the requirement for requeing. 4. Remove the use of a separate "Processor" interface for handling unpacked contents before installing. 5. Fix DOckerfile and Goreleaser to not handle rukpakctl binary. Signed-off-by: Varsha Prasad Narsing <[email protected]>
varshaprasad96
force-pushed
the
remove/bundle-api
branch
from
January 16, 2024 20:06
9a85b4a
to
9a7827b
Compare
ncdc
approved these changes
Jan 16, 2024
Merged
via the queue into
operator-framework:main
with commit Jan 16, 2024
2320883
9 of 11 checks passed
This was referenced Jan 22, 2024
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
As discussed here this PR intends to remove the Bundle API for purposes of having a single interface to handle bundle unpacking, templating and installation.
The following are the changes made:
TODO in follow ups: