From 23451b824137bb675246562d7cc67d090720ff8f Mon Sep 17 00:00:00 2001 From: quilesj Date: Thu, 23 Jan 2020 16:30:04 +0000 Subject: [PATCH] Fix bug 996. Error status when cluster is not ready Change-Id: I194932ac67aa9a04a1fd4a7e4789103b13477e6e Signed-off-by: quilesj (cherry picked from commit 32dc3c64b74491a4058822a3d6f6371ff74c835f) --- n2vc/k8s_helm_conn.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/n2vc/k8s_helm_conn.py b/n2vc/k8s_helm_conn.py index f7ff853..e57c42f 100644 --- a/n2vc/k8s_helm_conn.py +++ b/n2vc/k8s_helm_conn.py @@ -1105,7 +1105,10 @@ class K8sHelmConnector(K8sConnector): msg = 'Exception executing command: {} -> {}'.format(command, e) if show_error_log: self.error(msg) - return '', -1 + if raise_exception_on_error: + raise e + else: + return '', -1 def _remote_exec( self, -- 2.17.1