You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running Skaffold with Gradle + Jib build with concurrency enabled (or maybe always?) will offload all the concurrency implementation to Gradle. In other words, building multiple images in a Gradle multimodule project will execute Gradle once with multiple tasks. For example ./gradlew module1:jib module2:jib
Actual behavior
It appears that Skaffolds executes multiple Gradle instances if build.local.concurrency: 0 is set leading to occasional deadlocks.
Expected behavior
Running Skaffold with Gradle + Jib build with concurrency enabled (or maybe always?) will offload all the concurrency implementation to Gradle. In other words, building multiple images in a Gradle multimodule project will execute Gradle once with multiple tasks. For example
./gradlew module1:jib module2:jib
Actual behavior
It appears that Skaffolds executes multiple Gradle instances if
build.local.concurrency: 0
is set leading to occasional deadlocks.Information
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64 && \ sudo install skaffold /usr/local/bin/
Steps to reproduce the behavior
scaffold run
skaffold run
hangsThe text was updated successfully, but these errors were encountered: