Home > Net >  What is the difference between"Pod The node had condition: [DiskPressure]" and "The n
What is the difference between"Pod The node had condition: [DiskPressure]" and "The n

Time:09-27

When the pod is Evicted by disk issue, I found there are two reasons,

  1. Pod The node had condition: [DiskPressure]
  2. The node was low on resource: ephemeral-storage. Container NAME was using 16658224Ki, which exceeds its request of 0.

I found this document Node conditions for DiskPressure.

What is the difference?

CodePudding user response:

Both reasons refer to the same cause where the underlying worker node has ran out of disk space.

CodePudding user response:

For the second error you mentioned, it's caused by too much stuff in emptyDir or too much logs of the pods

But I have no idea if the second error could also trigger the first one...

  • Related