forked from kubeflow/pipelines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe2e_test_gke_v2.yaml
307 lines (297 loc) · 10.9 KB
/
e2e_test_gke_v2.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
# Copyright 2018 The Kubeflow Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
generateName: integration-test-
spec:
entrypoint: integration-test
arguments:
parameters:
- name: image-build-context-gcs-uri
- name: image-builder-image
value: gcr.io/ml-pipeline-test/image-builder:v20200208-0.1.25-771-g4c571961
- name: target-image-prefix
- name: test-results-gcs-dir
- name: initialization-test-image-suffix
value: initialization_test
- name: api-integration-test-image-suffix
value: api_integration_test
- name: frontend-integration-tests-image-suffix
value: frontend-integration-tests
- name: basic-e2e-tests-image-suffix
value: basic-e2e-tests
- name: cluster-type
value: gke
- name: namespace
value: kubeflow
templates:
- name: integration-test
inputs:
parameters:
- name: target-image-prefix
- name: test-results-gcs-dir
- name: initialization-test-image-suffix
- name: api-integration-test-image-suffix
- name: frontend-integration-tests-image-suffix
- name: basic-e2e-tests-image-suffix
- name: namespace
steps:
- - name: build-initialization-test-image
template: build-image
arguments:
parameters:
- name: docker-path
value: .
- name: docker-file
value: test/initialization-test/Dockerfile
- name: image-name
value: "{{inputs.parameters.target-image-prefix}}{{inputs.parameters.initialization-test-image-suffix}}"
- name: build-api-integration-test-image
template: build-image
arguments:
parameters:
- name: docker-path
value: .
- name: docker-file
value: test/api-integration-test/Dockerfile
- name: image-name
value: "{{inputs.parameters.target-image-prefix}}{{inputs.parameters.api-integration-test-image-suffix}}"
- name: build-frontend-integration-tests-image
template: build-image
arguments:
parameters:
- name: docker-path
value: test/frontend-integration-test
- name: image-name
value: "{{inputs.parameters.target-image-prefix}}{{inputs.parameters.frontend-integration-tests-image-suffix}}"
- name: build-basic-e2e-tests-image
template: build-image
arguments:
parameters:
- name: docker-path
value: .
- name: docker-file
value: test/sample-test/Dockerfile
- name: image-name
value: "{{inputs.parameters.target-image-prefix}}{{inputs.parameters.basic-e2e-tests-image-suffix}}"
- - name: run-initialization-tests
template: run-initialization-tests
arguments:
parameters:
- name: test-results-gcs-dir
value: "{{inputs.parameters.test-results-gcs-dir}}"
- name: initialization-test-image
value: "{{inputs.parameters.target-image-prefix}}{{inputs.parameters.initialization-test-image-suffix}}"
- - name: run-api-integration-tests
template: run-api-integration-tests
arguments:
parameters:
- name: test-results-gcs-dir
value: "{{inputs.parameters.test-results-gcs-dir}}"
- name: api-integration-test-image
value: "{{inputs.parameters.target-image-prefix}}{{inputs.parameters.api-integration-test-image-suffix}}"
- - name: run-frontend-integration-tests
template: run-frontend-integration-tests
arguments:
parameters:
- name: test-results-gcs-dir
value: "{{inputs.parameters.test-results-gcs-dir}}"
- name: frontend-integration-tests-image
value: "{{inputs.parameters.target-image-prefix}}{{inputs.parameters.frontend-integration-tests-image-suffix}}"
#TODO: Uncomment to disable the test on Minikube
#TODO: Change the cluster-type to "minikube" once https://github.com/kubeflow/pipelines/pull/1285 and related PRs are merged.
#when: "{{workflow.parameters.cluster-type}} != none" #Do not run the test on Minikube
- - name: run-basic-sample-tests
template: run-basic-e2e-tests
arguments:
parameters:
- name: test-results-gcs-dir
value: "{{inputs.parameters.test-results-gcs-dir}}"
- name: sample-tests-image
value: "{{inputs.parameters.target-image-prefix}}{{inputs.parameters.basic-e2e-tests-image-suffix}}"
- name: namespace
value: "{{inputs.parameters.namespace}}"
- name: test-name
value: "{{item}}"
withItems:
- exit_handler
- recursion
- sequential
- parallel_join
- volume_ops
- name: upgrade-test-preparation
inputs:
parameters:
- name: target-image-prefix
- name: test-results-gcs-dir
- name: api-integration-test-image-suffix
steps:
- - name: build-api-integration-test-image
template: build-image
arguments:
parameters:
- name: docker-path
value: .
- name: docker-file
value: test/api-integration-test/Dockerfile
- name: image-name
value: "{{inputs.parameters.target-image-prefix}}{{inputs.parameters.api-integration-test-image-suffix}}"
- - name: run-upgrade-tests-preparation
template: run-upgrade-tests-preparation
arguments:
parameters:
- name: test-results-gcs-dir
value: "{{inputs.parameters.test-results-gcs-dir}}"
- name: api-integration-test-image
value: "{{inputs.parameters.target-image-prefix}}{{inputs.parameters.api-integration-test-image-suffix}}"
- name: upgrade-test-verification
inputs:
parameters:
- name: target-image-prefix
- name: test-results-gcs-dir
- name: api-integration-test-image-suffix
steps:
- - name: run-upgrade-tests-verification
template: run-upgrade-tests-verification
arguments:
parameters:
- name: test-results-gcs-dir
value: "{{inputs.parameters.test-results-gcs-dir}}"
- name: api-integration-test-image
value: "{{inputs.parameters.target-image-prefix}}{{inputs.parameters.api-integration-test-image-suffix}}"
# Build and push image
- name: build-image
retryStrategy:
limit: 1
inputs:
parameters:
# GCS URI prefix pointing to a .tar.gz archive of Docker build context
- name: image-build-context-gcs-uri
value: "{{workflow.parameters.image-build-context-gcs-uri}}"
# The relative code path to the Dockerfile
- name: docker-path
# Name of the Docker file to use. "Dockerfile" by default
- name: docker-file
value: Dockerfile
- name: image-name
outputs:
parameters:
- name: strict-image-name
valueFrom:
path: /outputs/strict-image-name/file
container:
image: "{{workflow.parameters.image-builder-image}}"
imagePullPolicy: 'Always'
command:
- /build.sh
args: [
"--image-build-context-gcs-uri", "{{inputs.parameters.image-build-context-gcs-uri}}",
"--docker_path", "{{inputs.parameters.docker-path}}",
"--docker_file", "{{inputs.parameters.docker-file}}",
"--image_name", "{{inputs.parameters.image-name}}",
]
env:
- name: DOCKER_HOST
value: 127.0.0.1
sidecars:
- name: dind
image: docker:17.10-dind
command:
- dockerd-entrypoint.sh
securityContext:
privileged: true
mirrorVolumeMounts: true
- name: run-initialization-tests
inputs:
parameters:
- name: test-results-gcs-dir
- name: initialization-test-image
container:
image: "{{inputs.parameters.initialization-test-image}}"
command:
- /go/src/github.com/kubeflow/pipelines/test/initialization-test/run_test.sh
args: [
"--results-gcs-dir", "{{inputs.parameters.test-results-gcs-dir}}",
]
- name: run-api-integration-tests
inputs:
parameters:
- name: test-results-gcs-dir
- name: api-integration-test-image
container:
image: "{{inputs.parameters.api-integration-test-image}}"
command:
- /go/src/github.com/kubeflow/pipelines/test/api-integration-test/run_test.sh
args: [
"--results-gcs-dir", "{{inputs.parameters.test-results-gcs-dir}}",
]
- name: run-frontend-integration-tests
inputs:
parameters:
- name: test-results-gcs-dir
- name: frontend-integration-tests-image
container:
image: "{{inputs.parameters.frontend-integration-tests-image}}"
command:
- ./run_test.sh
args: [
"--results-gcs-dir", "{{inputs.parameters.test-results-gcs-dir}}",
]
- name: run-basic-e2e-tests
retryStrategy:
limit: 2
inputs:
parameters:
- name: test-results-gcs-dir
- name: sample-tests-image
- name: namespace
- name: test-name
container:
image: "{{inputs.parameters.sample-tests-image}}"
command:
- "python3"
- "/python/src/github.com/kubeflow/pipelines/test/sample-test/sample_test_launcher.py"
args: [
"sample_test", "run_test",
"--results-gcs-dir", "{{inputs.parameters.test-results-gcs-dir}}",
"--namespace", "{{inputs.parameters.namespace}}",
"--test-name", "{{inputs.parameters.test-name}}",
]
- name: run-upgrade-tests-preparation
inputs:
parameters:
- name: test-results-gcs-dir
- name: api-integration-test-image
container:
image: "{{inputs.parameters.api-integration-test-image}}"
command:
- "/go/src/github.com/kubeflow/pipelines/test/api-integration-test/run_test.sh"
args: [
"--results-gcs-dir", "{{inputs.parameters.test-results-gcs-dir}}",
"--run_upgrade_tests_preparation",
]
- name: run-upgrade-tests-verification
inputs:
parameters:
- name: test-results-gcs-dir
- name: api-integration-test-image
container:
image: "{{inputs.parameters.api-integration-test-image}}"
command:
- "/go/src/github.com/kubeflow/pipelines/test/api-integration-test/run_test.sh"
args: [
"--results-gcs-dir", "{{inputs.parameters.test-results-gcs-dir}}",
"--run_upgrade_tests_verification",
]