summaryrefslogtreecommitdiffstats
path: root/roles/openshift_health_checker/openshift_checks
diff options
context:
space:
mode:
authorLuke Meyer <lmeyer@redhat.com>2017-05-23 15:46:59 -0400
committerLuke Meyer <lmeyer@redhat.com>2017-05-23 15:46:59 -0400
commitda04b572777f43fc7a595e0960b66442c101cfce (patch)
tree38c3fbd49aa3a75fd33a1003a87fd23e25fce1b2 /roles/openshift_health_checker/openshift_checks
parent323301a45b1adc20ea41b0633b53185a1a9d77e9 (diff)
downloadopenshift-da04b572777f43fc7a595e0960b66442c101cfce.tar.gz
openshift-da04b572777f43fc7a595e0960b66442c101cfce.tar.bz2
openshift-da04b572777f43fc7a595e0960b66442c101cfce.tar.xz
openshift-da04b572777f43fc7a595e0960b66442c101cfce.zip
memory health check: adjust threshold for etcd
Diffstat (limited to 'roles/openshift_health_checker/openshift_checks')
-rw-r--r--roles/openshift_health_checker/openshift_checks/memory_availability.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_health_checker/openshift_checks/memory_availability.py b/roles/openshift_health_checker/openshift_checks/memory_availability.py
index aed0e2d20..8b1a58ef4 100644
--- a/roles/openshift_health_checker/openshift_checks/memory_availability.py
+++ b/roles/openshift_health_checker/openshift_checks/memory_availability.py
@@ -13,7 +13,7 @@ class MemoryAvailability(OpenShiftCheck):
recommended_memory_bytes = {
"masters": 16 * 10**9,
"nodes": 8 * 10**9,
- "etcd": 20 * 10**9,
+ "etcd": 8 * 10**9,
}
@classmethod