Last active
August 13, 2022 19:32
-
-
Save stevehenderson/61d30b12cbfd1d42e2ab1720a7e2a59f to your computer and use it in GitHub Desktop.
Large File Timeout for Cloud Build gsutil
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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