Skip to content

Commit 0690938

Browse files
committed
Ignore error output on ns clean.
1 parent bebe5f8 commit 0690938

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ function ensure-clean-e2e-test-namespace() {
227227
echo "ensuring all 'ccm-e2e-tests' namespaces are terminated."
228228
local res=$(kubectl get ns | grep 'cm-e2e-tests-' | awk '{print $1}')
229229
if [ ! -z "${res}" ]; then
230-
echo ${res} | xargs kubectl delete ns
230+
echo ${res} | xargs kubectl delete ns 2> /dev/null
231231
fi
232232
}
233233

0 commit comments

Comments
 (0)