Uh oh!
There was an error while loading. Please reload this page.
Allow pulls from an insecure registry - #490
Conversation
thaJeztah
commented
Sep 18, 2014
I wonder if this should be a short ( |
dnephin
commented
Sep 22, 2014
+1, I hit this as well, I'd be fine with either short or long option |
bfirsh
commented
Sep 23, 2014
+1 long flag. And it should be |
jbalonso
commented
Sep 23, 2014
Ok. A commit with |
bfirsh
commented
Sep 23, 2014
Great, thanks! Original commit still needs signing off though. You can squash all of this with |
jbalonso
commented
Sep 23, 2014
I took care of the signoff in the squash, and I believe the ball is back in your court. |
bfirsh
commented
Sep 23, 2014
Great stuff, thanks! |
dnephin
commented
Sep 24, 2014
I just realized that this kwarg ( |
dnephin
commented
Sep 24, 2014
Not sure why the travis build hasn't run on this branch, but I'm also getting a couple flake8 errors |
bfirsh
commented
Sep 24, 2014
Oops. We've replaced Travis with Wercker, so this needs rebasing to get CI run on it. |
jbalonso
commented
Sep 25, 2014
I've fixed the docker-py dependency. I'll worry about rebasing (where should I rebase to? I see an "All is well -- build finished" on the PR) and figuring out the flakes tomorrow. |
bfirsh
commented
Sep 25, 2014
We only recently added the file that makes the build work. If you rebase on to the current master, it'll get the |
jbalonso
commented
Sep 26, 2014
I've rebased, but I'm still cleaning up the branch. |
Signed-off-by: Jason Bernardino Alonso <jalonso@luminoso.com>
Signed-off-by: Jason Bernardino Alonso <jalonso@luminoso.com>
jbalonso
commented
Sep 26, 2014
Ok. A third force-push later, I believe I have cleaned up this PR. |
bfirsh
commented
Sep 30, 2014
LGTM |
bfirsh
commented
Sep 30, 2014
Don't think it's easy to test this without mocking out docker-py. :/ |
dnephin
commented
Sep 30, 2014
At the very least a simple unit test that asserts the right docker.client function was called wouldn't hurt. |
bfirsh
commented
Sep 30, 2014
Oh cool, forgot about that. @jbalonso – would be great to get a test! |
Signed-off-by: Moss Collum <mcollum@luminoso.com>
moss
commented
Oct 1, 2014
I've added the missing unit test to |
bfirsh
commented
Oct 1, 2014
LGTM |
Allow pulls from an insecure registry
tjrivera
commented
Oct 15, 2014
Hey guys, it seems like Fig will also attempt to pull needed images when running |
jbalonso
commented
Oct 15, 2014
I kinda feel responsible for not catching that in my PR. I'll mention that I'm out of bandwidth to work on it myself at the moment. |
dnephin
commented
Oct 15, 2014
I've run into this as well. I got around it for now by always doing a I think your solution sounds appropriate. |
torbjornvatn
commented
Oct 19, 2014
I've also run into this, and I really would like to call |
tjrivera
commented
Oct 20, 2014
@torbjornvatn I was planning on submitting a PR tomorrow morning |
torbjornvatn
commented
Oct 20, 2014
@tjrivera Nice! |
Allow pulls from an insecure registry Signed-off-by: Yuval Kohavi <yuval.kohavi@gmail.com>
PR docker#490 Provides the ability to pull from an insecure registry by passing --allow-insecure-ssl. This commit extends the work done in docker#490 and adds the ability to pass --allow-insecure-ssl to the up and run commands which will attempt to pull dependent images if they do not exist. Signed-off-by: Tyler Rivera <riverat2@email.chop.edu> Signed-off-by: Yuval Kohavi <yuval.kohavi@gmail.com>
Signed-off-by: Brian Brazil <brian.brazil@robustperception.io>
We maintain a private docker registry without SSL (it isn't necessary). This PR adds an
-ioption tofig pullthat enables insecure mode.