-
Notifications
You must be signed in to change notification settings - Fork 109
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
Do not sort targets from mirrord ls based on string values, instead let the iterator chain handle it. #2732
Conversation
…et the iterator chain handle it.
Note - targets are still sorted in the plugin here |
Can we switch the order so deployments will always be first? |
Maybe deployments -> rollouts -> whatever? |
sure |
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.
Only comment needs an update 👍
Co-authored-by: Michał Smolarek <[email protected]>
Remove a string sort that we had in the targets, when running
mirrord ls
. We have a neat chain of iterators that sorts the targets by type, starting withpods
, which is nicer than alphabetical ordering.