1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2024-12-14 11:57:51 +00:00

Merge pull request #734 from marquiz/devel/cloudbuild-timeout

cloudbuild.yaml: increase timeout to 1 hour
This commit is contained in:
Kubernetes Prow Robot 2022-01-20 11:09:09 -08:00 committed by GitHub
commit f8d83462ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
timeout: 2400s
timeout: 3600s
steps:
- name: gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20211118-2f2d816b90
entrypoint: scripts/test-infra/push-image.sh

View file

@ -19,7 +19,7 @@ i=1
while true; do
if make poll-images; then
break
elif [ $i -ge 12 ]; then
elif [ $i -ge 62 ]; then
echo "ERROR: too many tries when polling for image"
exit 1
fi