How to configure jib.httpTimeout when using quarkus-container-image-jib in Gradle? #48831
Unanswered
yab1ochkin
asked this question in
Q&A
Replies: 2 comments 5 replies
-
|
/cc @geoand (jib), @glefloch, @quarkusio/devtools, @radcortez (config) |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
I just tried with the The debut output I see is: |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description
I'm using Quarkus with Gradle and the
quarkus-container-image-jibextension to build and push container images.When pushing to a remote container registry with slow or unstable connection, the push sometimes fails with a timeout.
I would like to configure a longer HTTP timeout for the image push. I know that Jib supports a
jib.httpTimeoutsystem property, but it doesn't seem to work when running:What I tried
-Djib.httpTimeout=600000to the command linesystemProp.jib.httpTimeout=600000ingradle.propertiesNone of these approaches seem to affect the HTTP timeout, and the push still fails due to a timeout after the default duration.
Question
How can I configure the
jib.httpTimeout(or equivalent) when using Quarkus with Gradle and thequarkus-container-image-jibextension?Is there a recommended way to pass custom Jib settings (such as timeouts) in this setup?
Additional info
quarkus-container-image-jibBeta Was this translation helpful? Give feedback.
All reactions