fix: phrasing

This commit is contained in:
antoinegauvain 2019-12-18 11:55:54 +01:00
parent 38489fbf15
commit a11484bf27
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ So how can we deploy a stateful application with a persistent storage in Kuberne
## Volumes
We need to review what a volume is before continuing with the deployment of our mysql. As stated above, the disk of a pod is destroyed with it, so it's lost. For a database it'll nice if we could keep the data between restarts of the pods. Here comes the `volume`.
We need to review what a volume is before continuing with the deployment of our mysql. As stated above, the disk of a pod is destroyed with it, so it's lost. For a database it would be nice if we could keep the data between restarts of the pods. Here comes the `volume`.
We can see a `pod` as something that requests CPU & RAM. We can see a `volume` as something that requests a storage on disk. Kubernetes handles a lot of different kind of volumes - 26 has this file hands on is written - from local disk storage to s3.