Skip to content

Instantly share code, notes, and snippets.

@BeauBouchard
Created January 9, 2018 20:15
Show Gist options
  • Save BeauBouchard/cd3b1932a3a1c5017bbb63c19419b1fb to your computer and use it in GitHub Desktop.
Save BeauBouchard/cd3b1932a3a1c5017bbb63c19419b1fb to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: Pod
metadata:
name: counter
spec:
containers:
- name: count
image: busybox
args: [/bin/sh, -c,
'i=0; while true; do echo "$i: $(date)"; i=$((i+1)); sleep 1; done']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment