memory_availability.py 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. """Check that recommended memory is available."""
  2. from openshift_checks import OpenShiftCheck
  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. "oo_masters_to_config": 16 * GIB,
  13. "oo_nodes_to_config": 8 * GIB,
  14. "oo_etcd_to_config": 8 * GIB,
  15. }
  16. # https://access.redhat.com/solutions/3006511 physical RAM is partly reserved from memtotal
  17. memtotal_adjustment = 1 * GIB
  18. def is_active(self):
  19. """Skip hosts that do not have recommended memory requirements."""
  20. group_names = self.get_var("group_names", default=[])
  21. has_memory_recommendation = bool(set(group_names).intersection(self.recommended_memory_bytes))
  22. return super(MemoryAvailability, self).is_active() and has_memory_recommendation
  23. def run(self):
  24. group_names = self.get_var("group_names")
  25. total_memory_bytes = self.get_var("ansible_memtotal_mb") * MIB
  26. recommended_min = max(self.recommended_memory_bytes.get(name, 0) for name in group_names)
  27. configured_min = float(self.get_var("openshift_check_min_host_memory_gb", default=0)) * GIB
  28. min_memory_bytes = configured_min or recommended_min
  29. if total_memory_bytes + self.memtotal_adjustment < min_memory_bytes:
  30. return {
  31. 'failed': True,
  32. 'msg': (
  33. 'Available memory ({available:.1f} GiB) is too far '
  34. 'below recommended value ({recommended:.1f} GiB)'
  35. ).format(
  36. available=float(total_memory_bytes) / GIB,
  37. recommended=float(min_memory_bytes) / GIB,
  38. ),
  39. }
  40. return {}