Skip to content
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

Add possibility to build images from "dockerfiles" folder with '--no-cache' option #14213

Merged
merged 15 commits into from
Aug 27, 2019

Conversation

Ohrimenko1988
Copy link
Contributor

Signed-off-by: Ihor Okhrimenko [email protected]

What does this PR do?

Add possibility to build images from "dockerfiles" folder with '--no-cache' option

What issues does this PR fix or reference?

Issue: #14212

Release Notes

Docs PR

Signed-off-by: Ihor Okhrimenko <[email protected]>
@che-bot che-bot added status/code-review This issue has a pull request posted for it and is awaiting code review completion by the community. kind/task Internal things, technical debt, and to-do tasks to be performed. labels Aug 13, 2019
@che-bot
Copy link
Contributor

che-bot commented Aug 13, 2019

E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has been successful:

  • build details
  • "che-server" docker image: maxura/che-server:14213

@@ -20,7 +20,7 @@ fi
echo "Copying source code ${E2E_DIR} --> ${LOCAL_E2E_DIR}"
cp -r "${E2E_DIR}" "${LOCAL_E2E_DIR}"

init --name:e2e "$@"
init --name:e2e --no-cache "$@"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think there is something wrong here. Why no-cache should be mandatory if not given in build args ?

Copy link
Contributor Author

@Ohrimenko1988 Ohrimenko1988 Aug 14, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@benoitf If I understand you correctly, you mean common "build.sh". But this is not common "build.sh", this is "build.sh" of the e2e tests image, and for this image, we exactly need "--no-cache" option by default.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is something wrong in the Dockerfile if it should be default. I'm -1

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@benoitf The thing is, that we are installing latest chrome from official google chrome repo in the image (here), but as the dockerfile is not changing and the build is happening everytime on the same machine, cache is used and we are stuck with old version of browser.
I'm not aware of any other way of solving this. If you have better idea how to solve this, we're all ears!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Even in official docker best practices is this section in one of the examples:

# Install tools required to build the project
# We will need to run `docker build --no-cache .` to update those dependencies
RUN apk add --no-cache git
RUN go get github.com/golang/dep/cmd/dep

Copy link
Contributor

@benoitf benoitf Aug 14, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rhopp
to sum up: you want to invalidate the cache only if chome is updated

The approach for this is to use an ADD instruction to a link that is updated when google chrome is updated

Then you should (maybe link is not correct) use instruction like

# invalidate cache if updated
ADD http://dl.google.com/linux/chrome/rpm/stable/x86_64/repodata/filelists.xml.gz /tmp/filelists.xml.gz

before the yum install instructions

so it means that if the google chrome is not updated then we keep the layers, if google chrome is updated then layers are automatically invalidated

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is what we're doing in some Dockerfile to only recompile a dependency if github project has new commits since the last time we ran docker build

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good. Will try that! Thanks!

Signed-off-by: Ihor Okhrimenko <[email protected]>
@che-bot
Copy link
Contributor

che-bot commented Aug 19, 2019

E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has failed:

@che-bot
Copy link
Contributor

che-bot commented Aug 19, 2019

Results of automated E2E tests of Eclipse Che Multiuser on OCP:
Build details
Test report
docker image: eclipseche/che-server:14213
https://github.com/orgs/eclipse/teams/eclipse-che-qa please check this report.

@che-bot
Copy link
Contributor

che-bot commented Aug 22, 2019

E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has been successful:

  • build details
  • "che-server" docker image: maxura/che-server:14213

@che-bot
Copy link
Contributor

che-bot commented Aug 22, 2019

E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has been successful:

  • build details
  • "che-server" docker image: maxura/che-server:14213

@che-bot
Copy link
Contributor

che-bot commented Aug 22, 2019

Results of automated E2E tests of Eclipse Che Multiuser on OCP:
Build details
Test report
docker image: eclipseche/che-server:14213
https://github.com/orgs/eclipse/teams/eclipse-che-qa please check this report.

Signed-off-by: Ihor Okhrimenko <[email protected]>
@che-bot
Copy link
Contributor

che-bot commented Aug 23, 2019

E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has been successful:

  • build details
  • "che-server" docker image: maxura/che-server:14213

@che-bot
Copy link
Contributor

che-bot commented Aug 23, 2019

E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has been successful:

  • build details
  • "che-server" docker image: maxura/che-server:14213

@che-bot
Copy link
Contributor

che-bot commented Aug 23, 2019

E2E tests of Eclipse Che Multiuser on OCP has been successful:

Copy link
Contributor

@rhopp rhopp left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought we decided to scratch the --no-cache option from build.include and implement some logic into dockerfile (based on Florent's suggestion). What's the status of that?

@@ -30,11 +30,11 @@ If you want to gather screenshots of fallen tests, you have to mount a volume to
a command:

```
docker run --shm-size=256m -v /full/path/to/your/folder:/root/e2e/report:Z -e THEIA_SELENIUM_BASE_URL=$URL eclipse/che-e2e:nightly
docker run --shm-size=256m -v /full/path/to/your/folder:/root/e2e/report -e THEIA_SELENIUM_BASE_URL=$URL eclipse/che-e2e:nightly
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why did you removed the :Z from here?

Signed-off-by: Ihor Okhrimenko <[email protected]>
@che-bot
Copy link
Contributor

che-bot commented Aug 27, 2019

E2E tests of Eclipse Che Multiuser on OCP has been successful:

@che-bot
Copy link
Contributor

che-bot commented Aug 27, 2019

E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has been successful:

  • build details
  • "che-server" docker image: maxura/che-server:14213

@dmytro-ndp
Copy link
Contributor

IMHO, it makes sense to get rid of "--no-cache" option from dockerfiles/build.include, as Radim suggested above.

Signed-off-by: Ihor Okhrimenko <[email protected]>
Copy link
Contributor

@dmytro-ndp dmytro-ndp left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good.

@che-bot
Copy link
Contributor

che-bot commented Aug 27, 2019

E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has been successful:

  • build details
  • "che-server" docker image: maxura/che-server:14213

@Ohrimenko1988 Ohrimenko1988 merged commit e8efb82 into master Aug 27, 2019
@che-bot che-bot removed the status/code-review This issue has a pull request posted for it and is awaiting code review completion by the community. label Aug 27, 2019
@che-bot che-bot added this to the 7.1.0 milestone Aug 27, 2019
@che-bot
Copy link
Contributor

che-bot commented Aug 27, 2019

E2E tests of Eclipse Che Multiuser on OCP has been successful:

@Ohrimenko1988 Ohrimenko1988 deleted the selen-nocache branch August 28, 2019 07:26
Katka92 added a commit to Katka92/rh-che that referenced this pull request Aug 28, 2019
Katka92 added a commit to Katka92/rh-che that referenced this pull request Aug 28, 2019
Katka92 added a commit to redhat-developer/rh-che that referenced this pull request Aug 29, 2019
Katka92 added a commit to Katka92/rh-che that referenced this pull request Sep 3, 2019
ibuziuk pushed a commit to redhat-developer/rh-che that referenced this pull request Sep 6, 2019
ibuziuk pushed a commit to redhat-developer/rh-che that referenced this pull request Sep 6, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/task Internal things, technical debt, and to-do tasks to be performed.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants