From de09ed7f453da9a38faf27691e8c6d98213888c4 Mon Sep 17 00:00:00 2001 From: Alex Dixon Date: Fri, 30 Jun 2023 20:41:26 -0700 Subject: [PATCH] Add --rm for temporary pod command Without --rm this creates a pod in the default namespace named `curl`. It seems ok to remove it on exit. --- .../en/docs/tutorials/services/connect-applications-service.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tutorials/services/connect-applications-service.md b/content/en/docs/tutorials/services/connect-applications-service.md index 8b83003937..896f1eaef3 100644 --- a/content/en/docs/tutorials/services/connect-applications-service.md +++ b/content/en/docs/tutorials/services/connect-applications-service.md @@ -241,7 +241,7 @@ or [Installing CoreDNS](/docs/tasks/administer-cluster/coredns/#installing-cored Let's run another curl application to test this: ```shell -kubectl run curl --image=radial/busyboxplus:curl -i --tty +kubectl run curl --image=radial/busyboxplus:curl -i --tty --rm ``` ``` Waiting for pod default/curl-131556218-9fnch to be running, status is Pending, pod ready: false