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 %}}