summaryrefslogtreecommitdiffstats
path: root/roles/openshift_health_checker/openshift_checks/etcd_imagedata_size.py
diff options
context:
space:
mode:
authorRodolfo Carvalho <rhcarvalho@gmail.com>2017-08-08 18:53:44 +0200
committerGitHub <noreply@github.com>2017-08-08 18:53:44 +0200
commit7121e065b54f9642e6f69ca768b57c3eec542bf7 (patch)
tree4f849a9a7625cf97ad886c4513606121a0b20497 /roles/openshift_health_checker/openshift_checks/etcd_imagedata_size.py
parent0569c5069dabeea9e2fe94cd097cb6f2b1540867 (diff)
parent06a6fb9642a2cc70b1ca65f403b853fe8ce9d4b2 (diff)
downloadopenshift-7121e065b54f9642e6f69ca768b57c3eec542bf7.tar.gz
openshift-7121e065b54f9642e6f69ca768b57c3eec542bf7.tar.bz2
openshift-7121e065b54f9642e6f69ca768b57c3eec542bf7.tar.xz
openshift-7121e065b54f9642e6f69ca768b57c3eec542bf7.zip
Merge pull request #4913 from sosiouxme/20170720-refactor-check-results
openshift_checks: refactor check results
Diffstat (limited to 'roles/openshift_health_checker/openshift_checks/etcd_imagedata_size.py')
-rw-r--r--roles/openshift_health_checker/openshift_checks/etcd_imagedata_size.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_health_checker/openshift_checks/etcd_imagedata_size.py b/roles/openshift_health_checker/openshift_checks/etcd_imagedata_size.py
index 28c38504d..ae8460b7e 100644
--- a/roles/openshift_health_checker/openshift_checks/etcd_imagedata_size.py
+++ b/roles/openshift_health_checker/openshift_checks/etcd_imagedata_size.py
@@ -56,7 +56,7 @@ class EtcdImageDataSize(OpenShiftCheck):
reason = etcdkeysize["module_stderr"]
msg = msg.format(host=etcd_host, reason=reason)
- return {"failed": True, "changed": False, "msg": msg}
+ return {"failed": True, "msg": msg}
if etcdkeysize["size_limit_exceeded"]:
limit = self._to_gigabytes(etcd_imagedata_size_limit)
@@ -65,7 +65,7 @@ class EtcdImageDataSize(OpenShiftCheck):
"Use the `oadm prune images` command to cleanup unused Docker images.")
return {"failed": True, "msg": msg.format(host=etcd_host, limit=limit)}
- return {"changed": False}
+ return {}
@staticmethod
def _get_etcd_mountpath(ansible_mounts):