Move Guide topics: Logging (#2687)

This commit is contained in:
Steve Perry
2017-03-03 11:21:01 -08:00
committed by GitHub
parent a06df4d14a
commit ec03295bf0
15 changed files with 502 additions and 451 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']