In Kubernetes terms,non-persistentpod data (for example, transient logs and scratch space) is handled byephemeral storage, meaning the data exists only for the lifetime of the pod/workload and is not meant to survive beyond it. In the VCF Workload Management documentation, this concept is described directly: a pod requiresephemeral storageto store transient Kubernetes objects such as “logs” and “emptyDir volumes,” and this ephemeral (transient) storage “lasts as long as the pod continues to exist,” disappearing when the pod reaches end of life.
While VKS clusters can also consumepersistent storagethrough storage classes and CSI integration for stateful needs, that is specifically for data that must be retained (persistent volumes/claims). The question asks specifically aboutnon-persistentpod data, which aligns with the documented ephemeral/transient storage behavior for pod runtime needs. Therefore, the correct choice isEphemeral storage.
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit