localization: logging architecture (#16239)

* Translate logging architecture

* Add origin english doc

* FIX missing content

* Fix missing content

* Fix missing content

* Update content/zh/docs/concepts/cluster-administration/logging.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/zh/docs/concepts/cluster-administration/logging.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/zh/docs/concepts/cluster-administration/logging.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/zh/docs/concepts/cluster-administration/logging.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/zh/docs/concepts/cluster-administration/logging.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/zh/docs/concepts/cluster-administration/logging.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Leave sidebar untranslated
This commit is contained in:
fang duan
2019-09-15 20:56:38 +08:00
committed by Kubernetes Prow Robot
parent 3120d4f413
commit be8c86a0e5
12 changed files with 1149 additions and 0 deletions
@@ -0,0 +1,49 @@
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: node-problem-detector-v0.1
namespace: kube-system
labels:
k8s-app: node-problem-detector
version: v0.1
kubernetes.io/cluster-service: "true"
spec:
selector:
matchLabels:
k8s-app: node-problem-detector
version: v0.1
kubernetes.io/cluster-service: "true"
template:
metadata:
labels:
k8s-app: node-problem-detector
version: v0.1
kubernetes.io/cluster-service: "true"
spec:
hostNetwork: true
containers:
- name: node-problem-detector
image: k8s.gcr.io/node-problem-detector:v0.1
securityContext:
privileged: true
resources:
limits:
cpu: "200m"
memory: "100Mi"
requests:
cpu: "20m"
memory: "20Mi"
volumeMounts:
- name: log
mountPath: /log
readOnly: true
- name: config # Overwrite the config/ directory with ConfigMap volume
mountPath: /config
readOnly: true
volumes:
- name: log
hostPath:
path: /var/log/
- name: config # Define ConfigMap volume
configMap:
name: node-problem-detector-config