We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b39300e commit 3c4dd61Copy full SHA for 3c4dd61
run/jobs/e2e_test_setup.yaml
@@ -28,16 +28,21 @@ steps:
28
args:
29
- '-c'
30
- |
31
- gcloud components update --quiet
+ # TODO: b/230113499 update gcloud version when available
32
+ gcloud components install alpha --quiet
33
34
gcloud alpha run jobs create ${_SERVICE} \
35
--image gcr.io/${PROJECT_ID}/${_SERVICE}:${_VERSION} \
36
--project ${PROJECT_ID} \
37
--region ${_REGION} \
- --tasks 5 \
38
- --set-env-vars=SLEEP_MS=5000 \
39
- --max-retries 0 \
40
- --wait
+ --tasks 10 \
+ --set-env-vars=SLEEP_MS=100 \
+ --max-retries 0
41
+
42
+ ./retry.sh "gcloud alpha run jobs execute ${_SERVICE} \
43
+ --project ${PROJECT_ID} \
44
+ --region ${_REGION} \
45
+ --wait"
46
47
substitutions:
48
_SERVICE: logger-job
0 commit comments