I am setting up a basic pipeline using Cloud Build, based on a Github trigger but running into the following error:
Your build failed to run: generic::failed_precondition: generic::failed_precondition: no concurrent builds quota available to create builds
I checked:
- That the region I am working with (europe-west2) has no particular limits / quotas, as per the docs
- My project has billing enabled
- I haven't reached default thresholds inadvertently by checking my quotas consumption
- And tried to cancel some of the numerous failed builds in case Cloud Build would have a retry mechanism for each one of them that would contribute to exceeding the quotas. But got
Requested entity was not found
, which leads me into thinking that this was a wrong assumption and therefore not a cause for trouble.
My cloudbuild.json FYI:
{
"steps": [
{
"name": "gcr.io/cloud-builders/docker",
"args": [
"build",
"-t",
"europe-west2-docker.pkg.dev/${PROJECT_ID}/REPONAME/front-end:${COMMIT_SHA}",
"."
]
}
],
"options": {
"logging": "CLOUD_LOGGING_ONLY"
}
}
Any idea?
Thanks,