> For the complete documentation index, see [llms.txt](https://wiki.fruetel.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.fruetel.net/devops/kubernetes.md).

# Kubernetes

## Run a temporary bash pod within a cluster

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