Translate content/pt/docs/concepts/cluster-administration/logging.md into Portugues (#19573)

* translating doc kubelet logging

* adjustments to the logging doc in pt recommended in the CR
This commit is contained in:
Jhon Mike
2020-03-15 18:44:35 -03:00
committed by GitHub
parent d4167faa2c
commit 6aa392535c
6 changed files with 344 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']