-
Notifications
You must be signed in to change notification settings - Fork 43
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
✨ Add commands to list and get olmv1 operators and catalogs #218
✨ Add commands to list and get olmv1 operators and catalogs #218
Conversation
9ae44c1
to
31bf951
Compare
get and list should not be separate subcommands. With kubectl, one can list by simply leaving the name argument out of the command args. So
|
I was going by the separation that already exists in olmv0 commands but this approach would be my preference as well, so happy to make the changes |
31bf951
to
3b2c08b
Compare
3b2c08b
to
1915338
Compare
I don't think it's necessary to get this PR down. But, if it's easy enough, it would be cool to have an asciinema demo attached to the PR description (maybe even the script checked-in with the PR =D) |
1915338
to
aaa995b
Compare
good idea, though I'd suggest doing that once we have all the other new olmv1 commands that we're looking to add already in place, so we can have a single, self-contained demo just working with new CLI commands and showing e2e functionality. I'd imagine this demo would end up in README the same like it is now for olmv0. I'll create an issue for this to keep track: operator-framework/operator-controller#1807 |
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.
Some small nits around comments and wondering whether we ought to also test the sort order. But, not super worried about it. Leave it to you to decide ^^ otherwise - looks nice! very concise and easy to read. Thank you!
aaa995b
to
59305ac
Compare
Signed-off-by: Artur Zych <[email protected]>
59305ac
to
8c8eed2
Compare
Great job @azych! |
This adds
get
command that enables getting/listing olmv1operators
(ClusterExtensions
) andcatalogs
(ClusterCatalogs
) via the CLI.Syntax follows the
get
behavior ofkubectl
:olmv1 get operator(s)
- list all operatorsolmv1 get operator(s) <name>
- get details of a single operatorolmv1 get catalog(s)
- list all catalogsolmv1 get catalog(s) <name>
- get details of a single catalogCommands return data in the following format similar to
kubectl
output, with catalogs being sorted by availability, priority and name; operators being sorted by name:closes operator-framework/operator-controller#1767
cc @ankitathomas