This message was deleted.
# harvester
a
This message was deleted.
f
The reserved value is the request value
You can use
kubectl describe node <NODE NAME>
to see which vm requested a large value
a
@powerful-soccer-11224 please run those 3 commands to get the memory usage, you will find which POD allocates big amount of memory. suspect some already created VM are using wrong memroy size, as in the
create vm
WEBUI, the default memory unit is
Gb
, not
Mb
.
Copy code
kubectl get pods -A -o yaml | yq e '.items[].metadata.name' -
kubectl get pods -A -o yaml | yq e '.items[].spec.containers[].resources.requests.memory' -
kubectl get pods -A -o yaml | yq e '.items[].spec.containers[].resources.limits.memory' -
p
Thanks @full-plastic-79795 and @ancient-pizza-13099. Let me try those commands and will update you further