-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Allow users to use multistage Docker builds based on Docker version #782
Conversation
8da432c
to
c07f59a
Compare
While this PR passes CI, multistage builds cause the memcached e2e test to run for 400 seconds, which normally run in 250 seconds. I tested these changes locally and the result is 220 vs 200 seconds for multistage and non-multistage, respectively. With an increased timeout, the total build time for Go e2e CI with these changes is ~17 minutes, ~3 minutes more than non-multistage. I originally thought this was a buildah issue but it appears to affect both buildah and docker multistage builds in travis VM's. Locally there are no issues. |
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 overall. Just a few typos to fix and some nits.
c1f786e
to
c610b03
Compare
/hold There is some more discussion that we need to have around managing multiple layers of Dockerfiles #431 and how we update the Dockerfile for a hybrid operator #670 before we see how a multistage Dockerfile fits into that solution. We definitely want multistage Dockerfiles but before we open that door and push users to multistage, we need to be clear on how we support multiple base images(single vs multiple Dockerfiles) and how the SDK can control the Dockerfile for any changes that it needs while still allowing the user to add custom build steps. |
74fa600
to
5f252b2
Compare
@estroz: PR needs rebase. 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. |
if repo == "" { | ||
for _, dir := range []string{"pkg", "internal"} { | ||
for _, dir := range []string{filepath.Join("internal", "pkg")} { |
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.
I only copy internal/pkg
here because internal/util
has dependencies that memcached-operator
does not satisfy, which causes a build error. This is a temporary workaround until #1001 is merged, since go mod
can resolve non-master
commits.
This PR works locally but for some reason e2e tests experience a |
@estroz The default |
If that is the only problem can't we just set the timeout e.g. |
@lilic travis will send a I'm going to put off this PR until we can figure out a CI solution for slow containerized binary builds. /hold |
@chrsoo limitations are in image build speed and go test logging. Travis VM's are fairly slow, which combined with slow building of binaries in docker containers results in much longer build times. As of now there's no log streaming from go tests, but they're working on it. Hopefully it'll be in go 1.13 or 1.14. A workaround in the mean time is to copy the multistage builder Dockerfile into |
@estroz: PR needs rebase. 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. |
Description of the change: if docker version >= 17.05 is present, allow users to generate a multistage Dockerfile
build/multistage.Dockerfile
usingoperator-sdk build --gen-multistage
and use it in building. The SDK will detect whether both docker version >=17.05 is available and a multistage Dockerfile is present, and if the former is true but not the latter will generate a warning to upgrade using--gen-multistage
. The warning directs users to move renamemultistage.Dockerfile
toDockerfile
to avoid the warning in the future. Multistage Dockerfiles are used in tests too.Motivation for the change: some users might not be restricted by RHEL docker versioning, so they should be able to build Go binaries in a consistent environment. The only way to do so currently is with multistage builds. We should push users with docker version >= 17.05 towards using a multistage build with a warning, but not necessarily require it. This solution creates multistage Dockerfiles for both operator and test binaries.
Closes #167