Issue #13651 Update Debug Services (#13652)

Change the command to use Alpine Image instead of Busy Box
pull/13553/head^2
Supriya Sirbi 2019-04-10 07:04:12 +05:30 committed by Kubernetes Prow Robot
parent d02c3ca934
commit a4629ca423
1 changed files with 2 additions and 2 deletions

View File

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