mirror of https://github.com/dapr/docs.git
				
				
				
			
		
			
				
	
	
		
			100 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
| ---
 | |
| apiVersion: v1
 | |
| kind: ServiceAccount
 | |
| metadata:
 | |
|   name: fluentd
 | |
|   namespace: kube-system
 | |
| 
 | |
| ---
 | |
| apiVersion: rbac.authorization.k8s.io/v1
 | |
| kind: ClusterRole
 | |
| metadata:
 | |
|   name: fluentd
 | |
|   namespace: kube-system
 | |
| rules:
 | |
| - apiGroups:
 | |
|   - ""
 | |
|   resources:
 | |
|   - pods
 | |
|   - namespaces
 | |
|   verbs:
 | |
|   - get
 | |
|   - list
 | |
|   - watch
 | |
| 
 | |
| ---
 | |
| kind: ClusterRoleBinding
 | |
| apiVersion: rbac.authorization.k8s.io/v1
 | |
| metadata:
 | |
|   name: fluentd
 | |
|   namespace: default
 | |
| roleRef:
 | |
|   kind: ClusterRole
 | |
|   name: fluentd
 | |
|   apiGroup: rbac.authorization.k8s.io
 | |
| subjects:
 | |
| - kind: ServiceAccount
 | |
|   name: fluentd
 | |
|   namespace: kube-system
 | |
| ---
 | |
| apiVersion: apps/v1
 | |
| kind: DaemonSet
 | |
| metadata:
 | |
|   name: fluentd
 | |
|   namespace: kube-system
 | |
|   labels:
 | |
|     k8s-app: fluentd-logging
 | |
|     version: v1
 | |
| spec:
 | |
|   selector:
 | |
|     matchLabels:
 | |
|       k8s-app: fluentd-logging
 | |
|       version: v1
 | |
|   template:
 | |
|     metadata:
 | |
|       labels:
 | |
|         k8s-app: fluentd-logging
 | |
|         version: v1
 | |
|     spec:
 | |
|       serviceAccount: fluentd
 | |
|       serviceAccountName: fluentd
 | |
|       tolerations:
 | |
|       - key: node-role.kubernetes.io/master
 | |
|         effect: NoSchedule
 | |
|       containers:
 | |
|       - name: fluentd
 | |
|         image: fluent/fluentd-kubernetes-daemonset:v1.9.2-debian-elasticsearch7-1.0
 | |
|         env:
 | |
|           - name:  FLUENT_ELASTICSEARCH_HOST
 | |
|             value: "elasticsearch-master.dapr-monitoring"
 | |
|           - name:  FLUENT_ELASTICSEARCH_PORT
 | |
|             value: "9200"
 | |
|           - name: FLUENT_ELASTICSEARCH_SCHEME
 | |
|             value: "http"
 | |
|           - name: FLUENT_UID
 | |
|             value: "0"
 | |
|         resources:
 | |
|           limits:
 | |
|             memory: 200Mi
 | |
|           requests:
 | |
|             cpu: 100m
 | |
|             memory: 200Mi
 | |
|         volumeMounts:
 | |
|         - name: varlog
 | |
|           mountPath: /var/log
 | |
|         - name: varlibdockercontainers
 | |
|           mountPath: /var/lib/docker/containers
 | |
|           readOnly: true
 | |
|         - name: fluentd-config
 | |
|           mountPath: /fluentd/etc
 | |
|       terminationGracePeriodSeconds: 30
 | |
|       volumes:
 | |
|       - name: varlog
 | |
|         hostPath:
 | |
|           path: /var/log
 | |
|       - name: varlibdockercontainers
 | |
|         hostPath:
 | |
|           path: /var/lib/docker/containers
 | |
|       - name: fluentd-config
 | |
|         configMap:
 | |
|           name: fluentd-config |