Translated architecture to Italian (#13399)

This commit is contained in:
Michele Berardi
2019-04-11 12:48:44 -04:00
committed by Kubernetes Prow Robot
parent 48d5e74984
commit 5a7d1f6c39
25 changed files with 3053 additions and 0 deletions
@@ -0,0 +1,26 @@
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)" >> /var/log/1.log;
echo "$(date) INFO $i" >> /var/log/2.log;
i=$((i+1));
sleep 1;
done
volumeMounts:
- name: varlog
mountPath: /var/log
volumes:
- name: varlog
emptyDir: {}