Skip to content
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

Conversation

azych
Copy link
Contributor

@azych azych commented Feb 19, 2025

This adds get command that enables getting/listing olmv1 operators(ClusterExtensions) and catalogs (ClusterCatalogs) via the CLI.

Syntax follows the get behavior of kubectl:
olmv1 get operator(s) - list all operators
olmv1 get operator(s) <name> - get details of a single operator
olmv1 get catalog(s) - list all catalogs
olmv1 get catalog(s) <name> - get details of a single catalog

Commands return data in the following format similar to kubectl output, with catalogs being sorted by availability, priority and name; operators being sorted by name:

➜  go run *.go olmv1 get operator
NAME       INSTALLED BUNDLE            VERSION  SOURCE TYPE  INSTALLED  PROGRESSING  AGE
argocd     argocd-operator.v0.6.0      0.6.0    Catalog      True       True         5h44m
zookeeper  zookeeper-operator.v0.17.8  0.17.8   Catalog      True       True         24s
➜  go run *.go olmv1 get operators
NAME       INSTALLED BUNDLE            VERSION  SOURCE TYPE  INSTALLED  PROGRESSING  AGE
argocd     argocd-operator.v0.6.0      0.6.0    Catalog      True       True         5h44m
zookeeper  zookeeper-operator.v0.17.8  0.17.8   Catalog      True       True         30s
➜  go run *.go olmv1 get operator zookeeper
NAME       INSTALLED BUNDLE            VERSION  SOURCE TYPE  INSTALLED  PROGRESSING  AGE
zookeeper  zookeeper-operator.v0.17.8  0.17.8   Catalog      True       True         37s
➜  go run *.go olmv1 get operators zookeeper
NAME       INSTALLED BUNDLE            VERSION  SOURCE TYPE  INSTALLED  PROGRESSING  AGE
zookeeper  zookeeper-operator.v0.17.8  0.17.8   Catalog      True       True         41s
➜  go run *.go olmv1 get catalog
NAME              AVAILABILITY  PRIORITY  LASTUNPACKED  SERVING  AGE
notoperatorhubio  Available     0         13s           True     20s
operatorhubio     Available     0         103m          True     5h46m
➜  go run *.go olmv1 get catalogs
NAME              AVAILABILITY  PRIORITY  LASTUNPACKED  SERVING  AGE
notoperatorhubio  Available     0         19s           True     26s
operatorhubio     Available     0         103m          True     5h46m
➜  go run *.go olmv1 get catalog operatorhubio
NAME           AVAILABILITY  PRIORITY  LASTUNPACKED  SERVING  AGE
operatorhubio  Available     0         103m          True     5h47m
➜  go run *.go olmv1 get catalogs operatorhubio
NAME           AVAILABILITY  PRIORITY  LASTUNPACKED  SERVING  AGE
operatorhubio  Available     0         103m          True     5h47m

closes operator-framework/operator-controller#1767

cc @ankitathomas

@openshift-ci openshift-ci bot requested review from benluddy and jmrodri February 19, 2025 12:45
@azych azych force-pushed the olmv1-list-get-catalogs-and-operators branch from 9ae44c1 to 31bf951 Compare February 19, 2025 12:53
@joelanford
Copy link
Member

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

  • kubectl operator get catalog(s) -> lists the ClusterCatalogs
  • kubectl operator get catalog(s) my-catalog -> gets the ClusterCatalog called my-catalog`

@azych
Copy link
Contributor Author

azych commented Feb 19, 2025

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

* `kubectl operator get catalog(s)` -> lists the ClusterCatalogs

* `kubectl operator get catalog(s) my-catalog -> gets the ClusterCatalog called `my-catalog`

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

@azych azych force-pushed the olmv1-list-get-catalogs-and-operators branch from 31bf951 to 3b2c08b Compare February 19, 2025 15:44
@azych azych changed the title ✨ OPRUN-3735: Add commands to list and get olmv1 operators and catalogs ✨ Add commands to list and get olmv1 operators and catalogs Feb 19, 2025
@azych azych force-pushed the olmv1-list-get-catalogs-and-operators branch from 3b2c08b to 1915338 Compare February 20, 2025 14:31
@perdasilva
Copy link
Contributor

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)

@azych azych force-pushed the olmv1-list-get-catalogs-and-operators branch from 1915338 to aaa995b Compare February 25, 2025 09:53
@azych
Copy link
Contributor Author

azych commented Feb 25, 2025

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)

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

Copy link
Contributor

@perdasilva perdasilva left a 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!

@azych azych force-pushed the olmv1-list-get-catalogs-and-operators branch from aaa995b to 59305ac Compare February 25, 2025 14:35
@azych azych force-pushed the olmv1-list-get-catalogs-and-operators branch from 59305ac to 8c8eed2 Compare February 25, 2025 14:37
@perdasilva perdasilva added this pull request to the merge queue Feb 28, 2025
Merged via the queue into operator-framework:main with commit c788f7c Feb 28, 2025
4 checks passed
@grokspawn
Copy link

Great job @azych!

@azych azych deleted the olmv1-list-get-catalogs-and-operators branch March 3, 2025 15:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Extend kubectl-operator to get/list OLMv1 resources
6 participants