-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Skaffold can't use the latest gcr.io/cloud-builders/mvn to with with Jib on GCB #2546
Comments
dgageot
added a commit
to dgageot/skaffold
that referenced
this issue
Jul 25, 2019
Fix GoogleContainerTools#2546 Also took the opportunity to improve tests a bit. Should give builds that are slightly faster since they will by default use a builder image that's already cached on GCB. Signed-off-by: David Gageot <[email protected]>
dgageot
added a commit
to dgageot/skaffold
that referenced
this issue
Jul 25, 2019
Fix GoogleContainerTools#2546 Also took the opportunity to improve tests a bit. Should give builds that are slightly faster since they will by default use a builder image that's already cached on GCB. Signed-off-by: David Gageot <[email protected]>
dgageot
added a commit
to dgageot/skaffold
that referenced
this issue
Jul 25, 2019
Fix GoogleContainerTools#2546 Also took the opportunity to improve tests a bit. Should give builds that are slightly faster since they will by default use a builder image that's already cached on GCB. Signed-off-by: David Gageot <[email protected]>
dgageot
added a commit
to dgageot/skaffold
that referenced
this issue
Jul 26, 2019
Fix GoogleContainerTools#2546 Also took the opportunity to improve tests a bit. Should give builds that are slightly faster since they will by default use a builder image that's already cached on GCB. Signed-off-by: David Gageot <[email protected]>
dgageot
added a commit
to dgageot/skaffold
that referenced
this issue
Jul 26, 2019
Fix GoogleContainerTools#2546 Also took the opportunity to improve tests a bit. Should give builds that are slightly faster since they will by default use a builder image that's already cached on GCB. Signed-off-by: David Gageot <[email protected]>
dgageot
added a commit
to dgageot/skaffold
that referenced
this issue
Jul 28, 2019
Fix GoogleContainerTools#2546 Also took the opportunity to improve tests a bit. Should give builds that are slightly faster since they will by default use a builder image that's already cached on GCB. Signed-off-by: David Gageot <[email protected]>
dgageot
added a commit
to dgageot/skaffold
that referenced
this issue
Jul 29, 2019
Fix GoogleContainerTools#2546 Also took the opportunity to improve tests a bit. Should give builds that are slightly faster since they will by default use a builder image that's already cached on GCB. Signed-off-by: David Gageot <[email protected]>
dgageot
added a commit
to dgageot/skaffold
that referenced
this issue
Jul 30, 2019
Fix GoogleContainerTools#2546 Also took the opportunity to improve tests a bit. Should give builds that are slightly faster since they will by default use a builder image that's already cached on GCB. Signed-off-by: David Gageot <[email protected]>
dgageot
added a commit
to dgageot/skaffold
that referenced
this issue
Jul 30, 2019
Fix GoogleContainerTools#2546 Also took the opportunity to improve tests a bit. Should give builds that are slightly faster since they will by default use a builder image that's already cached on GCB. Signed-off-by: David Gageot <[email protected]>
dgageot
added a commit
that referenced
this issue
Jul 31, 2019
* Support recent maven, for Jib on GCB Fix #2546 Also took the opportunity to improve tests a bit. Should give builds that are slightly faster since they will by default use a builder image that's already cached on GCB. Signed-off-by: David Gageot <[email protected]> * Use a more recent version of maven Signed-off-by: David Gageot <[email protected]> * Show more logs when building with Jib Signed-off-by: David Gageot <[email protected]> * Add a jib gradle integration test Signed-off-by: David Gageot <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The version of the
gcr.io/cloud-builders/mvn
builder that Skaffold uses on GCB to build jib artifacts was pinned a while ago to a version that containeddocker
.The reason is that Skaffold runs
jib:dockerBuild
and lets Cloud Build push the result image. Instead, it could usejib:build
and let Jib push the image itself. Which was complicated because of GoogleContainerTools/jib#1500The text was updated successfully, but these errors were encountered: