memory_availability.py 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. """Check that recommended memory is available."""
  2. from openshift_checks import OpenShiftCheck, get_var
  3. MIB = 2**20
  4. GIB = 2**30
  5. class MemoryAvailability(OpenShiftCheck):
  6. """Check that recommended memory is available."""
  7. name = "memory_availability"
  8. tags = ["preflight"]
  9. # Values taken from the official installation documentation:
  10. # https://docs.openshift.org/latest/install_config/install/prerequisites.html#system-requirements
  11. recommended_memory_bytes = {
  12. "masters": 16 * GIB,
  13. "nodes": 8 * GIB,
  14. "etcd": 8 * GIB,
  15. }
  16. # https://access.redhat.com/solutions/3006511 physical RAM is partly reserved from memtotal
  17. memtotal_adjustment = 1 * GIB
  18. @classmethod
  19. def is_active(cls, task_vars):
  20. """Skip hosts that do not have recommended memory requirements."""
  21. group_names = get_var(task_vars, "group_names", default=[])
  22. has_memory_recommendation = bool(set(group_names).intersection(cls.recommended_memory_bytes))
  23. return super(MemoryAvailability, cls).is_active(task_vars) and has_memory_recommendation
  24. def run(self, tmp, task_vars):
  25. group_names = get_var(task_vars, "group_names")
  26. total_memory_bytes = get_var(task_vars, "ansible_memtotal_mb") * MIB
  27. recommended_min = max(self.recommended_memory_bytes.get(name, 0) for name in group_names)
  28. configured_min = float(get_var(task_vars, "openshift_check_min_host_memory_gb", default=0)) * GIB
  29. min_memory_bytes = configured_min or recommended_min
  30. if total_memory_bytes + self.memtotal_adjustment < min_memory_bytes:
  31. return {
  32. 'failed': True,
  33. 'msg': (
  34. 'Available memory ({available:.1f} GiB) is too far '
  35. 'below recommended value ({recommended:.1f} GiB)'
  36. ).format(
  37. available=float(total_memory_bytes) / GIB,
  38. recommended=float(min_memory_bytes) / GIB,
  39. ),
  40. }
  41. return {}