-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Remove copied CRI and depend on CRI module #2966
Conversation
Hi @qiutongs. Thanks for your PR. I'm waiting for a google member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/ok-to-test |
@@ -95,7 +95,7 @@ def file_passes(filename, refs, regexs): | |||
def file_extension(filename): | |||
return os.path.splitext(filename)[1].split(".")[-1].lower() | |||
|
|||
skipped_dirs = ['Godeps', 'vendor', 'third_party', '_gopath', '_output', '.git', 'cri-api'] | |||
skipped_dirs = ['Godeps', 'vendor', 'third_party', '_gopath', '_output', '.git'] |
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.
You can remove Godeps while at it. Obsoleted since commit 236f41d
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.
ok. I can remove 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.
This is so much better than the previous hack! Could have helped me a lot with #2962.
LGTM (nb)
The copied CRI code failed build in K8s. So we decided to give up that way. In containerd-cri branch, it doesn't need copied CRI anymore.