bearking58 commited on
Commit
09df726
·
1 Parent(s): e5e10bc

fix: waitfor not using array

Browse files
Files changed (1) hide show
  1. cloudbuild-endpoint.yaml +3 -3
cloudbuild-endpoint.yaml CHANGED
@@ -17,7 +17,7 @@ steps:
17
  - name: "gcr.io/google.com/cloudsdktool/cloud-sdk"
18
  entrypoint: "bash"
19
  id: fetch-model
20
- waitFor: upload-model
21
  timeout: 600s
22
  args:
23
  - "-c"
@@ -28,7 +28,7 @@ steps:
28
  - name: "gcr.io/google.com/cloudsdktool/cloud-sdk"
29
  entrypoint: "bash"
30
  id: create-endpoint
31
- waitFor: fetch-model
32
  args:
33
  - "-c"
34
  - |
@@ -40,7 +40,7 @@ steps:
40
 
41
  - name: "gcr.io/google.com/cloudsdktool/cloud-sdk"
42
  entrypoint: "bash"
43
- waitFor: create-endpoint
44
  args:
45
  - "-c"
46
  - |
 
17
  - name: "gcr.io/google.com/cloudsdktool/cloud-sdk"
18
  entrypoint: "bash"
19
  id: fetch-model
20
+ waitFor: ["upload-model"]
21
  timeout: 600s
22
  args:
23
  - "-c"
 
28
  - name: "gcr.io/google.com/cloudsdktool/cloud-sdk"
29
  entrypoint: "bash"
30
  id: create-endpoint
31
+ waitFor: ["fetch-model"]
32
  args:
33
  - "-c"
34
  - |
 
40
 
41
  - name: "gcr.io/google.com/cloudsdktool/cloud-sdk"
42
  entrypoint: "bash"
43
+ waitFor: ["create-endpoint"]
44
  args:
45
  - "-c"
46
  - |