From f38c90768d3fd159ebc5f42bda429db0c5c73c59 Mon Sep 17 00:00:00 2001 From: Oussema CHERNI Date: Wed, 29 May 2019 07:20:21 +0200 Subject: [PATCH] Delete resources created during this task (#14536) --- .../configure-projected-volume-storage.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/content/en/docs/tasks/configure-pod-container/configure-projected-volume-storage.md b/content/en/docs/tasks/configure-pod-container/configure-projected-volume-storage.md index a6e3e5372c..ec6f2d9528 100644 --- a/content/en/docs/tasks/configure-pod-container/configure-projected-volume-storage.md +++ b/content/en/docs/tasks/configure-pod-container/configure-projected-volume-storage.md @@ -67,6 +67,16 @@ the Pod: ```shell ls /projected-volume/ ``` + +## Clean up + +Delete the Pod and the Secrets: + +```shell +kubectl delete pod test-projected-volume +kubectl delete secret user pass +``` + {{% /capture %}} {{% capture whatsnext %}}