forked from kubeflow/kubeflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprow_config.yaml
179 lines (179 loc) · 5.8 KB
/
prow_config.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
# This file configures the workflows to trigger in our Prow jobs.
# see kubeflow/testing/py/run_e2e_workflow.py
python_paths:
# Need to place kubeflow/testing in front of kubeflow/kubeflow so that the
# package can be correctly located.
- kubeflow/testing/py
- kubeflow/kubeflow/py
workflows:
# Run unittests for the shared frontend code
- py_func: kubeflow.kubeflow.ci.common_ui_tests.create_workflow
name: common-ui
job_types:
- presubmit
include_dirs:
- components/crud-web-apps/common/frontend/kubeflow-common-lib/*
kwargs: {}
# Run unittests for access management
- py_func: kubeflow.kubeflow.ci.access_management_tests.create_workflow
name: ac-mgr-tests
job_types:
- presubmit
include_dirs:
- components/access-management/*
kwargs: {}
# Run unittests for admission webhook
- py_func: kubeflow.kubeflow.ci.admission_webhook_tests.create_workflow
name: adm-wh-tests
job_types:
- presubmit
include_dirs:
- components/admission-webhook/*
kwargs: {}
# Run unittests for the central dashboard
- py_func: kubeflow.kubeflow.ci.central_dashboard_tests.create_workflow
name: cdash-test
job_types:
- presubmit
include_dirs:
- components/centraldashboard/*
kwargs: {}
# Run unittests for the Jupyter Web App
- py_func: kubeflow.kubeflow.ci.jwa_tests.create_workflow
name: jwa-tests
job_types:
- presubmit
include_dirs:
- components/crud-web-apps/common/frontend/kubeflow-common-lib/*
- components/crud-web-apps/common/backend/*
- components/crud-web-apps/jupyter/*
kwargs: {}
# Run unittests for the Notebook Controller
- py_func: kubeflow.kubeflow.ci.notebook_controller_tests.create_workflow
name: nb-c-tests
job_types:
- presubmit
include_dirs:
- components/common/*
- components/notebook-controller/*
kwargs: {}
# Run unittests for the Profile Controller
- py_func: kubeflow.kubeflow.ci.profile_controller_tests.create_workflow
name: pro-c-test
job_types:
- presubmit
include_dirs:
- components/profile-controller/*
kwargs: {}
# Run unittests for the Tensorboard Controller
- py_func: kubeflow.kubeflow.ci.tensorboard_controller_tests.create_workflow
name: tb-c-test
job_types:
- presubmit
include_dirs:
- components/common/*
- components/tensorboard-controller/*
kwargs: {}
# Run unittests for the Tensorboard Web App
- py_func: kubeflow.kubeflow.ci.twa_tests.create_workflow
name: twa-tests
job_types:
- presubmit
include_dirs:
- components/crud-web-apps/common/frontend/kubeflow-common-lib/*
- components/crud-web-apps/common/backend/*
- components/crud-web-apps/tensorboards/*
kwargs: {}
# Run unittests for the Volumes Web App
- py_func: kubeflow.kubeflow.ci.vwa_tests.create_workflow
name: vwa-tests
job_types:
- presubmit
include_dirs:
- components/crud-web-apps/common/frontend/kubeflow-common-lib/*
- components/crud-web-apps/common/backend/*
- components/crud-web-apps/volumes/*
kwargs: {}
#######################################
# Postsubmit jobs
#######################################
# Create and push Jupyter Web App OCI image to ECR
- py_func: kubeflow.kubeflow.cd.jwa.create_workflow
name: jwa-build
job_types:
- postsubmit
include_dirs:
- components/crud-web-apps/common/frontend/kubeflow-common-lib/*
- components/crud-web-apps/common/backend/*
- components/crud-web-apps/jupyter/*
kwargs: {}
# Create and push Access Management OCI image to ECR
- py_func: kubeflow.kubeflow.cd.access_management.create_workflow
name: ac-mgr-build
job_types:
- postsubmit
include_dirs:
- components/access-management/*
kwargs: {}
# Create and push Admission Webhook OCI image to ECR
- py_func: kubeflow.kubeflow.cd.admission_webhook.create_workflow
name: adm-wh-build
job_types:
- postsubmit
include_dirs:
- components/admission-webhook/*
kwargs: {}
# Create and push Central Dashboard OCI image to ECR
- py_func: kubeflow.kubeflow.cd.central_dashboard.create_workflow
name: cdash-build
job_types:
- postsubmit
include_dirs:
- components/centraldashboard/*
kwargs: {}
# Create and push Tensorboard Web App OCI image to ECR
- py_func: kubeflow.kubeflow.cd.twa.create_workflow
name: twa-build
job_types:
- postsubmit
include_dirs:
- components/crud-web-apps/common/frontend/kubeflow-common-lib/*
- components/crud-web-apps/common/backend/*
- components/crud-web-apps/tensorboards/*
kwargs: {}
# Create and push Notebook Controller OCI image to ECR
- py_func: kubeflow.kubeflow.cd.notebook_controller.create_workflow
name: nb-c-build
job_types:
- postsubmit
include_dirs:
- components/common/*
- components/notebook-controller/*
kwargs: {}
# Create and push Profile Controller OCI image to ECR
- py_func: kubeflow.kubeflow.cd.profile_controller.create_workflow
name: pro-c-build
job_types:
- postsubmit
include_dirs:
- components/profile-controller/*
kwargs: {}
# Create and push Tensorboard Controller OCI image to ECR
- py_func: kubeflow.kubeflow.cd.tensorboard_controller.create_workflow
name: tb-c-build
job_types:
- postsubmit
include_dirs:
- components/common/*
- components/tensorboard-controller/*
kwargs: {}
# Create and push Volumes Web App OCI image to ECR
- py_func: kubeflow.kubeflow.cd.vwa.create_workflow
name: vwa-build
job_types:
- postsubmit
include_dirs:
- components/crud-web-apps/common/frontend/kubeflow-common-lib/*
- components/crud-web-apps/common/backend/*
- components/crud-web-apps/volumes/*
kwargs: {}