Issue #13651 Update Debug Services (#13652)

Change the command to use Alpine Image instead of Busy Box
This commit is contained in:
Supriya Sirbi
2019-04-10 07:04:12 +05:30
committed by Kubernetes Prow Robot
parent d02c3ca934
commit a4629ca423
@@ -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 >}}