Change remaining instances of hostDir in docs to hostPath

This commit is contained in:
Paul Morie
2015-07-08 16:26:20 -04:00
parent f2adea2527
commit 5b4adf8469
3 changed files with 3 additions and 3 deletions

View File

@@ -64,7 +64,7 @@ And we added a reference to that volume to our container:
In Kubernetes, ```emptyDir``` Volumes live for the lifespan of the Pod, which is longer than the lifespan of any one container, so if the container fails and is restarted, our persistent storage will live on.
If you want to mount a directory that already exists in the file system (e.g. ```/var/logs```) you can use the ```hostDir``` directive.
If you want to mount a directory that already exists in the file system (e.g. ```/var/logs```) you can use the ```hostPath``` directive.
See [volumes](../../docs/volumes.md) for more details.