Spanish Translation

This commit is contained in:
Enrique Medina Montenegro
2020-06-07 09:48:05 +02:00
committed by Rael Garcia
parent 71d08b0932
commit 6df3223d72
11 changed files with 1133 additions and 9 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']