From 128f1f2ae2780ccec5f6cc9b708b651bf11471dc Mon Sep 17 00:00:00 2001
From: Amim Knabben <amim.knabben@gmail.com>
Date: Wed, 8 Apr 2020 22:49:14 -0400
Subject: [PATCH] Exec on correct pod name

---
 .../docs/tasks/debug-application-cluster/debug-running-pod.md   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/en/docs/tasks/debug-application-cluster/debug-running-pod.md b/content/en/docs/tasks/debug-application-cluster/debug-running-pod.md
index 95065ca595..a812640555 100644
--- a/content/en/docs/tasks/debug-application-cluster/debug-running-pod.md
+++ b/content/en/docs/tasks/debug-application-cluster/debug-running-pod.md
@@ -107,7 +107,7 @@ If you attempt to use `kubectl exec` to create a shell you will see an error
 because there is no shell in this container image.
 
 ```shell
-kubectl exec -it pause -- sh
+kubectl exec -it ephemeral-demo -- sh
 ```
 
 ```