Merge pull request #27235 from jihoon-seo/patch-5
Update concepts/storage/volumes.md
This commit is contained in:
commit
3d0e81a673
|
@ -33,10 +33,9 @@ drivers, but the functionality is somewhat limited.
|
||||||
Kubernetes supports many types of volumes. A {{< glossary_tooltip term_id="pod" text="Pod" >}}
|
Kubernetes supports many types of volumes. A {{< glossary_tooltip term_id="pod" text="Pod" >}}
|
||||||
can use any number of volume types simultaneously.
|
can use any number of volume types simultaneously.
|
||||||
Ephemeral volume types have a lifetime of a pod, but persistent volumes exist beyond
|
Ephemeral volume types have a lifetime of a pod, but persistent volumes exist beyond
|
||||||
the lifetime of a pod. Consequently, a volume outlives any containers
|
the lifetime of a pod. When a pod ceases to exist, Kubernetes destroys ephemeral volumes;
|
||||||
that run within the pod, and data is preserved across container restarts. When a pod
|
however, Kubernetes does not destroy persistent volumes.
|
||||||
ceases to exist, Kubernetes destroys ephemeral volumes; however, Kubernetes does not
|
For any kind of volume in a given pod, data is preserved across container restarts.
|
||||||
destroy persistent volumes.
|
|
||||||
|
|
||||||
At its core, a volume is a directory, possibly with some data in it, which
|
At its core, a volume is a directory, possibly with some data in it, which
|
||||||
is accessible to the containers in a pod. How that directory comes to be, the
|
is accessible to the containers in a pod. How that directory comes to be, the
|
||||||
|
|
Loading…
Reference in New Issue