Skip to content

Instantly share code, notes, and snippets.

@maslick
Created April 28, 2019 12:23
Show Gist options
  • Save maslick/db74fdf3b58ae3484bdf4b9565e38a6b to your computer and use it in GitHub Desktop.
Save maslick/db74fdf3b58ae3484bdf4b9565e38a6b to your computer and use it in GitHub Desktop.
busybox k8s pod
apiVersion: v1
kind: Pod
metadata:
name: busybox
labels:
app: busybox
spec:
containers:
- name: busybox
image: busybox
ports:
- containerPort: 80
command: ["/bin/sh", "-ec", "while :; do echo '.'; sleep 5 ; done"]
nodeSelector:
beta.kubernetes.io/os: linux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment