File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -216,17 +216,14 @@ def cluster_deploy_status(spy_link):
216
216
217
217
try :
218
218
response = requests .get (mce_install_log_url , verify = False , timeout = 15 )
219
- if response .status_code == 200 :
220
-
219
+ if response .status_code == 200 :
221
220
cluster_status = json .loads (response .text )
222
221
cluster_result = "MCE-INSTALL " + cluster_status ["result" ]
223
222
if cluster_status ["result" ] == "SUCCESS" :
224
223
# check mce-power-create status also
225
- mce_power_log_url = PROW_VIEW_URL + spy_link [8 :] + '/artifacts/' + job_type + '/hypershift-mce-power-create/finished.json'
226
-
224
+ mce_power_log_url = PROW_VIEW_URL + spy_link [8 :] + '/artifacts/' + job_type + '/hypershift-mce-power-create-nodepool/finished.json'
227
225
response = requests .get (mce_power_log_url , verify = False , timeout = 15 )
228
226
if response .status_code == 200 :
229
-
230
227
cluster_status = json .loads (response .text )
231
228
cluster_result += "\n MCE-POWER-CREATE " + cluster_status ["result" ]
232
229
if cluster_status ["result" ] == "SUCCESS" :
Original file line number Diff line number Diff line change 22
22
"4.16 heavy build" : " periodic-ci-openshift-multiarch-master-nightly-4.16-ocp-heavy-build-ovn-remote-libvirt-ppc64le" ,
23
23
"4.17 powervs capi" : " periodic-ci-openshift-multiarch-master-nightly-4.17-ocp-e2e-ovn-ppc64le-powervs-capi" ,
24
24
"4.14 MCE" : " periodic-ci-openshift-hypershift-release-4.14-periodics-e2e-mce-power-conformance" ,
25
- "4.15 MCE" : " periodic-ci-openshift-hypershift-release-4.15-periodics-e2e-mce-power-conformance" ,
26
- "4.16 MCE" : " periodic-ci-openshift-hypershift-release-4.16-periodics-e2e-mce-power-conformance" ,
25
+ "4.15 MCE" : " periodic-ci-openshift-hypershift-release-4.15-periodics-e2e-mce-power-ovn- conformance" ,
26
+ "4.16 MCE" : " periodic-ci-openshift-hypershift-release-4.16-periodics-e2e-mce-power-ovn- conformance" ,
27
27
"4.14 SNO" : " periodic-ci-openshift-multiarch-master-nightly-4.14-ocp-e2e-sno-power"
28
28
}
You can’t perform that action at this time.
0 commit comments