Skip to content

Instantly share code, notes, and snippets.

@stevehenderson
Last active August 13, 2022 19:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevehenderson/61d30b12cbfd1d42e2ab1720a7e2a59f to your computer and use it in GitHub Desktop.
Save stevehenderson/61d30b12cbfd1d42e2ab1720a7e2a59f to your computer and use it in GitHub Desktop.
Large File Timeout for Cloud Build gsutil
# The following sets the over all timeout
timeout: 7200s
- name: 'gcr.io/cloud-builders/gsutil'
args: ['cp', 'gs://project-volumes/big-project/big-file.tar', '.']
waitFor: ['-'] # The '-' indicates that this step begins immediately.
timeout: 4600s # Per step timeout
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment