-
Notifications
You must be signed in to change notification settings - Fork 372
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
Support LICENSES filename in manifest validation #692
Support LICENSES filename in manifest validation #692
Conversation
Some plugins like https://github.com/jetstack/cert-manager store the license information in a file called LICENSES. This adds support for this filename to the manifest validation. Fixes kubernetes-sigs#691 Signed-off-by: Bastian Hofmann <bashofmann@gmail.com>
Welcome @bashofmann! |
Makes sense. Thank you! |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: bashofmann, corneliusweig The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
do we need a new release ASAP or not? |
The CI pipeline in krew-index currently uses the validate check from a specific commit hash (https://github.com/kubernetes-sigs/krew-index/blob/master/.github/workflows/ci.yml#L49), which points to this commit 9fc1c54. |
Yeah I guess only the validation is broken, there's no user impact. That would work. |
New functionality: * Add support for LICENSES file in license check, which is uses by cert-manager (kubernetes-sigs/krew#692) Signed-off-by: Bastian Hofmann <bashofmann@gmail.com>
New functionality: * Add support for LICENSES file in license check, which is uses by cert-manager (kubernetes-sigs/krew#692) Signed-off-by: Bastian Hofmann <bashofmann@gmail.com>
Some plugins like https://github.com/jetstack/cert-manager store the license information in a file called LICENSES. This adds support for this filename to the manifest validation.
Fixes #691