agent: |
xMhWpsF8ZXCSDAu1oa45MemoryPressure
MemoryPressure
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
Checks if any of the nodes are constrained on memory (experiencing MemoryPressure)
inputs
outputs
mem_pressure_nodes = []
for node in problem_nodes:
nodename = node['nodename']
cmd = f"kubectl describe node {nodename} | grep MemoryPressure"
op = _exe(master_ip, cmd)
mem_pressure = op.split()[1]
if mem_pressure.lower() == "true":
mem_pressure_nodes.append(node)
if mem_pressure_nodes:
context.log("ERROR", "Mem Pressure Reached")
print("Mem Pressure Nodes: ", mem_pressure_nodes)
copied