Skip to content

Commit 837ef77

Browse files
authored
[ci][kuberay] Always cleanup KinD cluster (ray-project#27073)
When cleaning up after the k8s operator tests, we should always delete the k8s cluster even if something went wrong (in fact, it's not clear we even need to clean up the resources within the cluster. Signed-off-by: Alex Wu <itswu.alex@gmail.com>
1 parent 13d185c commit 837ef77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@
426426
- |
427427
cleanup() {
428428
if [ "${BUILDKITE_PULL_REQUEST}" = "false" ]; then ./ci/build/upload_build_info.sh; fi
429-
python python/ray/tests/kuberay/setup/teardown_kuberay.py
429+
python python/ray/tests/kuberay/setup/teardown_kuberay.py || true
430430
kind delete cluster
431431
}
432432
trap cleanup EXIT

0 commit comments

Comments
 (0)