From 6ac1441e253f159b862a5ec543e3c68ea281db39 Mon Sep 17 00:00:00 2001 From: Chen Hong Date: Wed, 8 Aug 2018 08:57:08 +0800 Subject: [PATCH] add some step (#9743) * modify shell * Please remove the -y for apt-get install --- .../configure-volume-storage.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/content/en/docs/tasks/configure-pod-container/configure-volume-storage.md b/content/en/docs/tasks/configure-pod-container/configure-volume-storage.md index 7d3b0cbf0c..b55f0b7eb3 100644 --- a/content/en/docs/tasks/configure-pod-container/configure-volume-storage.md +++ b/content/en/docs/tasks/configure-pod-container/configure-volume-storage.md @@ -115,6 +115,17 @@ of `Always`. ``` 1. In your shell, goto `/data/redis`, and verify that `test-file` is still there. + ```shell + root@redis:/data/redis# cd /data/redis/ + root@redis:/data/redis# ls + test-file + ``` + +1. Delete the Pod that you created for this exercise: + + ```shell + kubectl delete pod redis + ``` {{% /capture %}}