-
Notifications
You must be signed in to change notification settings - Fork 38
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
KO-285: Allow Operator operations with failed pods #257
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
6ca6a81
Allow Operator operations with failed pods
abhishekdwivedi3060 614bdc3
Added test-cases
abhishekdwivedi3060 35cef30
Resolved review comments
abhishekdwivedi3060 4fedc43
Fix minor bug
abhishekdwivedi3060 f03adeb
Added test-case
abhishekdwivedi3060 a148ed8
test
abhishekdwivedi3060 d0eab46
test
abhishekdwivedi3060 f33cbb1
Changed MaxIgnorableFailedPods field type to IntOrString
abhishekdwivedi3060 7c27441
Handled nil value
abhishekdwivedi3060 5142aa3
Handled device removal for ignored pods
abhishekdwivedi3060 64a0c57
Fixed go-lint
abhishekdwivedi3060 5850431
Added/modified test-cases
abhishekdwivedi3060 ba63462
cleanup go.sum
abhishekdwivedi3060 188013c
Fixed tests
sud82 cfb86cf
Fix lint issues
sud82 b181567
Fix rack management test
sud82 ccffd64
Fix test
sud82 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 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 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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 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
Oops, something went wrong.
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.
we can skip changing existing implementation of sets, but for new use-case can we use golang-set? Or may be in some files we are already imported apimachinery sets and you don't want to import both, in that case it's fine.
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.
golang-set is only used in SC file for management-lib changes.
As discussed, we won't change existing code to golang-set in this PR, so adding new changes with golang-set was causing confusion. So kept everything on apimachinery set pkg and will move to golang-set in one go.