-
Notifications
You must be signed in to change notification settings - Fork 72
OPRUN-3021: Improve README #529
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
# operator-framework-olm | ||
|
||
This repository is a monorepo superset of the projects that comprises the Operator Lifecycle Manager runtime and tooling for use with Openshift. | ||
This repository is a monorepo superset of the projects that comprises the | ||
Operator Lifecycle Manager runtime and tooling for use with Openshift. | ||
|
||
The upstream projects are: | ||
* [api](https://github.com/operator-framework/api) | ||
* [operator-registry](https://github.com/operator-framework/operator-registry) | ||
* [operator-lifecycle-manager](https://github.com/operator-framework/operator-lifecycle-manager) | ||
|
||
These projects are located in the `staging` directory. Changes to the | ||
contents of the `staging` directory need to be made upstream first (links | ||
above), and then downstreamed to this repository. | ||
|
||
Please refer to the [scripts README.md](scripts/README.md) to learn how to | ||
downstream commits from those projects to this repo. |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't sync_pop_candidate.sh also make manifests, vendor, etc. in ways that sync.sh does not?
(And also, sync_pop_candidate.sh needs to make verify-manifests in order to satisfy CI.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sync.sh
callssync_pop_candidate.sh
But nothing seems to call
make verify
ormake verify-manifests
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm going to document the need to do a
make verify
but fixing the downstreaming scripts to do that is a bit more involved, so I'd rather save that for another PR.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My point was really more about the statement about 'will follow the same process' when there is a behavior gap between the scripts.
for e.g.:
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But it is the same process. The sync.sh script:
sync_get_candidates.sh
sync_pop_candidate.sh
The
sync.sh
script literally callssync_pop_candidate.sh
to do all the work for a list of commits (generated bysync_get_candidates.sh
).The problem is that there's additional verification steps via
make verify
/make verify-manifests
, that need to occur.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Argh! You're completely correct. I missed the call to sync_pop_candidates.sh.☹️
Thanks for the sanity.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMHO we should solve the verification "additional steps" problem in changes to sync_pop_candidates.sh in another PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed.