-
Notifications
You must be signed in to change notification settings - Fork 706
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
Show operator instance types in the catalog #1582
Conversation
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.
LGTM
checked={listOperators} | ||
onChange={this.toggleListOperators} | ||
/> | ||
<span>Operator Instances</span> |
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.
We're using the technical name "operator instances" here, but I wonder if it'd be better from a user pov to just filter by "operators" (vs charts)?
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.
Right, I used Operators first but I thougth it could be confusing with the operators view. In any case you are probably right.
}); | ||
}); | ||
}); | ||
return result; |
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.
Looks like this is returning all charts followed by all operators? Should the catalog result be sorted in some way?
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.
It is. Probably is more intuitive to have them mixed and ordered alphabetically
Description of the change
This PR adds support for showing Operator instance types in the Catalog view along with available charts. To improve the discover-ability of those instances, there is a column filter that you can use to list only charts or operators (which is only rendered if there are operators available).
Fun fact: The icons are now encrypted in base64 in the CSV definition
Applicable issues