Created
April 28, 2019 12:23
-
-
Save maslick/db74fdf3b58ae3484bdf4b9565e38a6b to your computer and use it in GitHub Desktop.
busybox k8s pod
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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