# Kubernetes

## Run a temporary bash pod within a cluster

```
kubectl run my-shell --rm -i --tty --image ubuntu -- bash
```
