|
@@ -1097,10 +1097,6 @@ class OpenShiftCLI(object):
|
|
|
elif self.namespace is not None and self.namespace.lower() not in ['none', 'emtpy']: # E501
|
|
|
cmds.extend(['-n', self.namespace])
|
|
|
|
|
|
- rval = {}
|
|
|
- results = ''
|
|
|
- err = None
|
|
|
-
|
|
|
if self.verbose:
|
|
|
print(' '.join(cmds))
|
|
|
|
|
@@ -1110,34 +1106,26 @@ class OpenShiftCLI(object):
|
|
|
returncode, stdout, stderr = 1, '', 'Failed to execute {}: {}'.format(subprocess.list2cmdline(cmds), ex)
|
|
|
|
|
|
rval = {"returncode": returncode,
|
|
|
- "results": results,
|
|
|
"cmd": ' '.join(cmds)}
|
|
|
|
|
|
- if returncode == 0:
|
|
|
- if output:
|
|
|
- if output_type == 'json':
|
|
|
- try:
|
|
|
- rval['results'] = json.loads(stdout)
|
|
|
- except ValueError as verr:
|
|
|
- if "No JSON object could be decoded" in verr.args:
|
|
|
- err = verr.args
|
|
|
- elif output_type == 'raw':
|
|
|
- rval['results'] = stdout
|
|
|
-
|
|
|
- if self.verbose:
|
|
|
- print("STDOUT: {0}".format(stdout))
|
|
|
- print("STDERR: {0}".format(stderr))
|
|
|
-
|
|
|
- if err:
|
|
|
- rval.update({"err": err,
|
|
|
- "stderr": stderr,
|
|
|
- "stdout": stdout,
|
|
|
- "cmd": cmds})
|
|
|
+ if output_type == 'json':
|
|
|
+ rval['results'] = {}
|
|
|
+ if output and stdout:
|
|
|
+ try:
|
|
|
+ rval['results'] = json.loads(stdout)
|
|
|
+ except ValueError as verr:
|
|
|
+ if "No JSON object could be decoded" in verr.args:
|
|
|
+ rval['err'] = verr.args
|
|
|
+ elif output_type == 'raw':
|
|
|
+ rval['results'] = stdout if output else ''
|
|
|
|
|
|
- else:
|
|
|
+ if self.verbose:
|
|
|
+ print("STDOUT: {0}".format(stdout))
|
|
|
+ print("STDERR: {0}".format(stderr))
|
|
|
+
|
|
|
+ if 'err' in rval or returncode != 0:
|
|
|
rval.update({"stderr": stderr,
|
|
|
- "stdout": stdout,
|
|
|
- "results": {}})
|
|
|
+ "stdout": stdout})
|
|
|
|
|
|
return rval
|
|
|
|