docs-fr | concepts | cluster-administration | logging.md (#15244)

* Add docs/concepts/cluster-administration/logging.md

* Add depending examples

* Translate first 2 chapters

* Coorect the path to debug/counter-pod.yaml

Only the english versions can be directly referenced.

* translate last chapter and adjust to doc style guide

* Fix french ortographic and gramatical errors

* Fix french grammar and orthograph
This commit is contained in:
David Ricordel
2019-07-11 16:28:56 +02:00
committed by Kubernetes Prow Robot
parent 113008ff6e
commit 891139aa49
6 changed files with 496 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']