From a4629ca423cc6ab87c1a0aadebdb7e2c64eefb43 Mon Sep 17 00:00:00 2001 From: Supriya Sirbi Date: Wed, 10 Apr 2019 07:04:12 +0530 Subject: [PATCH] Issue #13651 Update Debug Services (#13652) Change the command to use Alpine Image instead of Busy Box --- .../en/docs/tasks/debug-application-cluster/debug-service.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/tasks/debug-application-cluster/debug-service.md b/content/en/docs/tasks/debug-application-cluster/debug-service.md index 01b794ce00..7f23c9b56a 100644 --- a/content/en/docs/tasks/debug-application-cluster/debug-service.md +++ b/content/en/docs/tasks/debug-application-cluster/debug-service.md @@ -48,10 +48,10 @@ OUTPUT ## Running commands in a Pod For many steps here you will want to see what a `Pod` running in the cluster -sees. The simplest way to do this is to run an interactive busybox `Pod`: +sees. The simplest way to do this is to run an interactive alpine `Pod`: ```none -kubectl run -it --rm --restart=Never busybox --image=busybox sh +kubectl run -it --rm --restart=Never alpine --image=alpine sh / # ``` {{< note >}}