Move topic from clusters to cluster-administration. (#2812)

This commit is contained in:
Steve Perry
2017-03-14 12:59:13 -07:00
committed by GitHub
parent df5fecc5c8
commit f1e7d0bda9
7 changed files with 9 additions and 6 deletions
@@ -0,0 +1,10 @@
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']