zh-trans: add examples/{controllers,debug,federation}/ yaml files

This commit is contained in:
Rui Chen
2018-12-03 09:13:06 -05:00
parent 13953625e4
commit b3a0ff3479
18 changed files with 913 additions and 0 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']