An open API service indexing awesome lists of open source software.

https://github.com/sloppycoder/shell-pod

Pod for running shell commands from within the cluster for various testing
https://github.com/sloppycoder/shell-pod

Last synced: over 1 year ago
JSON representation

Pod for running shell commands from within the cluster for various testing

Awesome Lists containing this project

README

          

## project to create a pod that allows to run shell inside
This is useful to test various things inside the K8S cluster

### Run the project with skaffold
```
skaffold dev
```

### Access shell inside the pod
```
kubectl exec -it bash -- /bin/bash
```

### shut it down
```
kubectl delete pod bash --grace-period 0 --force

# or use ctrl-C to kill skaffold process
```