-
Notifications
You must be signed in to change notification settings - Fork 1.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
[19.03 backport] Disable TLS for e2e docker-in-docker daemon #2022
Conversation
ping @kolyshkin @silvin-lubecki ptal |
Codecov Report
@@ Coverage Diff @@
## 19.03 #2022 +/- ##
========================================
Coverage ? 56.75%
========================================
Files ? 311
Lines ? 21819
Branches ? 0
========================================
Hits ? 12384
Misses ? 8521
Partials ? 914 |
1 similar comment
Codecov Report
@@ Coverage Diff @@
## 19.03 #2022 +/- ##
========================================
Coverage ? 56.75%
========================================
Files ? 311
Lines ? 21819
Branches ? 0
========================================
Hits ? 12384
Misses ? 8521
Partials ? 914 |
The edge channel is deprecated and no longer updated Signed-off-by: Sebastiaan van Stijn <[email protected]> (cherry picked from commit 08fd6dd) Signed-off-by: Sebastiaan van Stijn <[email protected]>
The docker-in-docker image now enables TLS by default (added in docker-library/docker#166), which complicates testing in our environment, and isn't needed for the tests we're running. This patch sets the `DOCKER_TLS_CERTDIR` to an empty value to disable TLS. Signed-off-by: Sebastiaan van Stijn <[email protected]> (cherry picked from commit b1a3c1a) Signed-off-by: Sebastiaan van Stijn <[email protected]>
f5b265c
to
f357def
Compare
updated; added #1992 |
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.
LGTM
backport of #1992 and #2020
The docker-in-docker image now enables TLS by default (added in
docker-library/docker#166), which complicates testing in our
environment, and isn't needed for the tests we're running.
This patch sets the
DOCKER_TLS_CERTDIR
to an empty value todisable TLS.