Silent output when deleting ns osm in k8s cluster
[osm/devops.git] / installers / install_kubeadm_cluster.sh
index 972fef1..1672854 100755 (executable)
@@ -229,7 +229,7 @@ function check_for_readiness() {
 #removes osm deployments and services
 function remove_k8s_namespace() {
     [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
-    kubectl delete ns $1
+    kubectl delete ns $1 2>&1 >/dev/null
     [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
 }