I'm working on EKS v1.20.11-eks-f17b81 and I'm facing an issue with a Java container Alpine based. Basically my deployment have the limits of ephemeral-storage for the request's and also the limit's like this.
- containerPort: 8080
protocol: TCP
resources:
limits:
cpu: 2048m
ephemeral-storage: 1300Mi
memory: 4096M
requests:
cpu: 500m
memory: 1024M
ephemeral-storage: 1000Mi
The pods after a few hours all of them, will be on Evicted state, and I'm not able to understand why, if I take a look at the /var/lib folder on the nodes there's plenty of space, also if I go to some pod with kubectl exec -ti POD -- sh and I do something like du -sch / I never found more than 300MB used, what can be happening ?.