-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Bump go-containerregistry to latest #6073
Bump go-containerregistry to latest #6073
Conversation
Welcome @sayboras! |
Hi @sayboras. Thanks for your PR. I'm waiting for a kubernetes 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. |
Can one of the admins verify this patch? |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: sayboras The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/ok-to-test |
Does
|
Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please follow instructions at https://git.k8s.io/community/CLA.md#the-contributor-license-agreement to sign the CLA. It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.
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. I understand the commands that are listed here. |
d3b041d
to
05fe671
Compare
Travis tests have failedHey @sayboras, TravisBuddy Request Identifier: 19448040-1d6a-11ea-a2fb-51cb67500490 |
Travis tests have failedHey @sayboras, TravisBuddy Request Identifier: 41211f10-1d6a-11ea-a2fb-51cb67500490 |
All Times minikube: [ 130.322024 129.399386 126.339407] Average minikube: 128.686939 Averages Time Per Log
|
@tstromberg The latest version of go-containerregistry requires docker/docker github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7 https://github.com/google/go-containerregistry/blob/master/go.mod#L15. However, this version will break https://github.com/samalba/dockerclient (for test cases only). As this client is no longer updated and maintained (docker-archive/classicswarm#1879). For the time being, I have raised machine-drivers/machine#26 to replace it. Need your input if there is any alternative approach.
|
Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please follow instructions at https://git.k8s.io/community/CLA.md#the-contributor-license-agreement to sign the CLA. It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.
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. I understand the commands that are listed here. |
All Times minikube: [ 122.302872 126.000934 116.147404] Average minikube: 121.483737 Averages Time Per Log
|
wait for samalba/dockerclient#246 to address the above issue, not sure if the author is still checking PR. |
All Times minikube: [ 93.560859 96.823319 96.816873] Average minikube: 95.733684 Averages Time Per Log
|
@medyagh need your help on integration test, I tried to run it locally on my macbook, but got another issue :(. I have ubuntu and mac for testing. Appreciate if you can give me how to do it so that feedback is faster. FYI. I compile minikube binary and manage to provision cluster successfully. |
Hey @sayboras thank you for opening this PR. I think it's pretty close to being merged, could you please resolve merge conflicts? Also, what issue did you run into when running integration tests locally? We have some documentation around it which could be helpful. |
@sayboras are you still interested to finish this PR, seems like only needs to resolve merge conflicts? |
bedb86e
to
77c7500
Compare
Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please follow instructions at https://git.k8s.io/community/CLA.md#the-contributor-license-agreement to sign the CLA. It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.
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. I understand the commands that are listed here. |
@@ -334,7 +334,7 @@ func validateCacheCmd(ctx context.Context, t *testing.T, profile string) { | |||
} | |||
t.Run("cache", func(t *testing.T) { | |||
t.Run("add", func(t *testing.T) { | |||
for _, img := range []string{"busybox", "busybox:1.28.4-glibc", "k8s.gcr.io/pause:latest"} { | |||
for _, img := range []string{"busybox:latest", "busybox:1.28.4-glibc", "k8s.gcr.io/pause:latest"} { |
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 need to have latest
due to https://github.com/google/go-containerregistry/pull/404/files, which allows to have both tag and digest (i.e the latest
tag is not added automatically)
88be5b5
to
c0130ec
Compare
All Times minikube: [ 98.257825 92.944797 95.032189] Average minikube: 95.411604 Averages Time Per Log
|
Oh sorry, just have some time locked down to finish this. It should be ok now, please let me know if you have any feedback, happy to address. |
Signed-off-by: sayboras <sayboras@yahoo.com>
c0130ec
to
385b94e
Compare
@sayboras thanks for updating the PR, the Hyperkit Test failures are a lot ! I wonder if this is related to this PR ? https://storage.googleapis.com/minikube-builds/logs/6073/HyperKit_macOS.html have you tried it on mac yourself? to run the tests you can run the tests using this command:
|
Yes, I did with with the cleanup=true
|
Thank you very much :) |
fixes #6045