Skip to content

Instantly share code, notes, and snippets.

@mhausenblas
Last active August 28, 2017 08:03
Show Gist options
  • Select an option

  • Save mhausenblas/92afb799669a16ca07838b3843821b03 to your computer and use it in GitHub Desktop.

Select an option

Save mhausenblas/92afb799669a16ca07838b3843821b03 to your computer and use it in GitHub Desktop.
A jump box pod for Kubernetes troubleshooting, use `kubectl exec jump -c busybox -i -t -- sh` to connect to it
apiVersion: v1
kind: Pod
metadata:
name: jump
spec:
containers:
- name: busybox
image: busybox
command:
- sleep
- "3600"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment