From 6edfc77327ba5b1668ca68481813572242afa96b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolaj=20Gr=C3=A6sholt?= Date: Fri, 19 Jan 2018 09:30:32 +0100 Subject: [PATCH] change path to reflect guide The "Configure a Pod to Use a PersistentVolume for Storage"-task specifies that the content should be located on "/mnt/data" and not "/tmp/data", however this is not reflected in the yaml. --- docs/tasks/configure-pod-container/task-pv-volume.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/configure-pod-container/task-pv-volume.yaml b/docs/tasks/configure-pod-container/task-pv-volume.yaml index 5fa1edb55f..33ca6843f4 100644 --- a/docs/tasks/configure-pod-container/task-pv-volume.yaml +++ b/docs/tasks/configure-pod-container/task-pv-volume.yaml @@ -11,4 +11,4 @@ spec: accessModes: - ReadWriteOnce hostPath: - path: "/tmp/data" + path: "/mnt/data"