When I deploy a simple Pod without Istio Proxy, resources (CPU, RAM and ephemeral storage) works fine, like GCP documentation indicates. (for example, ephemeral storage = 2Gi)
There are some way to reduce this storage? I checked, and some annotations configure CPU and RAM, but nothing about storage. https://istio.io/latest/docs/reference/config/annotations/
Thanks
Hello salvadorar,
As per this documentation , "Pods use ephemeral local storage for scratch space, caching, and for logs. The kubelet can provide scratch space to Pods using local ephemeral storage to mount emptyDir
volumes into containers."
"Note: The kubelet will only track the root filesystem for ephemeral storage. OS layouts that mount a separate disk to /var/lib/kubelet
or /var/lib/containers
will not report ephemeral storage correctly."
For setting the local ephemeral storage, you can check this documentation for reference.