-
Notifications
You must be signed in to change notification settings - Fork 5k
Upgrade k8s.io/client-go and k8s keystore tests #18817
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
Merged
Merged
Changes from 10 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
44367e4
Upgrade k8s.io/client-go
ChrsMark b9f7636
fixes and fmt
ChrsMark adbc51b
fix deps
ChrsMark 7440677
check err on secret creation
ChrsMark f008d0f
fix error args
ChrsMark 651813c
Add tests
ChrsMark a316ed0
verbose logging
ChrsMark f3d914e
Add check for kube-state-metrics
ChrsMark 3ff1564
code improvement and changelog entry
ChrsMark 2cf6c53
Revert verbose changes
ChrsMark 683675c
review fiexes
ChrsMark 5b29a62
Add temp pattern to solve UNKNOWN licence issue
ChrsMark c9d823a
reduce code
ChrsMark 67e0f67
Merge remote-tracking branch 'upstream/master' into k8s_secrets_tests
ChrsMark File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -434,6 +434,7 @@ def detect_license_summary(content): | |
| "MPL-2.0", | ||
| "UPL-1.0", | ||
| "ISC", | ||
| "UNKNOWN", | ||
| ] | ||
| SKIP_NOTICE = [] | ||
|
|
||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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.
I don't think we can accept these, did you dig in what license is this project using?
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.
I did check and
json-patchhas a BSD3 license (which is accepted), but detection is failing, we need to adjust the script to detect itThere 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.
👍 looking into it!
Uh oh!
There was an error while loading. Please reload this page.
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.
@exekias I'm afraid that their licence is not correct:
In https://github.com/evanphx/json-patch/blob/17efcbe3533fdf65efac5054bddbee809b4b4848/LICENSE#L9 there is a comma missing after
notice.Cross checked with https://opensource.org/licenses/BSD-3-Clause.
Tried with a sample repo of mine and Github seems to give a proper template for this (with the comma included) hence they might missed it somehow. Shall we mention it to them and/or a PR to fix it?
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.
Why not, this looks like a minor typo, a PR sounds like a good idea.
In order to avoid blocking this one I wonder if we should update our script to accept that or wait a little bit to see it fixed
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.
PR opened. I prefer to have it fixed there properly instead of changing our script :)