ceph-csi/vendor/k8s.io/kubernetes/cluster/addons/fluentd-elasticsearch/fluentd-es-ds.yaml

117 lines
2.9 KiB
YAML
Raw Normal View History

2018-01-09 18:57:14 +00:00
apiVersion: v1
kind: ServiceAccount
metadata:
name: fluentd-es
namespace: kube-system
labels:
k8s-app: fluentd-es
kubernetes.io/cluster-service: "true"
addonmanager.kubernetes.io/mode: Reconcile
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: fluentd-es
labels:
k8s-app: fluentd-es
kubernetes.io/cluster-service: "true"
addonmanager.kubernetes.io/mode: Reconcile
rules:
- apiGroups:
- ""
resources:
- "namespaces"
- "pods"
verbs:
- "get"
- "watch"
- "list"
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: fluentd-es
labels:
k8s-app: fluentd-es
kubernetes.io/cluster-service: "true"
addonmanager.kubernetes.io/mode: Reconcile
subjects:
- kind: ServiceAccount
name: fluentd-es
namespace: kube-system
apiGroup: ""
roleRef:
kind: ClusterRole
name: fluentd-es
apiGroup: ""
---
2018-03-06 22:33:18 +00:00
apiVersion: apps/v1
2018-01-09 18:57:14 +00:00
kind: DaemonSet
metadata:
2018-03-06 22:33:18 +00:00
name: fluentd-es-v2.0.4
2018-01-09 18:57:14 +00:00
namespace: kube-system
labels:
k8s-app: fluentd-es
2018-03-06 22:33:18 +00:00
version: v2.0.4
2018-01-09 18:57:14 +00:00
kubernetes.io/cluster-service: "true"
addonmanager.kubernetes.io/mode: Reconcile
spec:
selector:
matchLabels:
k8s-app: fluentd-es
2018-03-06 22:33:18 +00:00
version: v2.0.4
2018-01-09 18:57:14 +00:00
template:
metadata:
labels:
k8s-app: fluentd-es
kubernetes.io/cluster-service: "true"
2018-03-06 22:33:18 +00:00
version: v2.0.4
2018-01-09 18:57:14 +00:00
# This annotation ensures that fluentd does not get evicted if the node
# supports critical pod annotation based priority scheme.
# Note that this does not guarantee admission on the nodes (#40573).
annotations:
scheduler.alpha.kubernetes.io/critical-pod: ''
spec:
2018-03-06 22:33:18 +00:00
priorityClassName: system-node-critical
2018-01-09 18:57:14 +00:00
serviceAccountName: fluentd-es
containers:
- name: fluentd-es
2018-03-06 22:33:18 +00:00
image: k8s.gcr.io/fluentd-elasticsearch:v2.0.4
2018-01-09 18:57:14 +00:00
env:
- name: FLUENTD_ARGS
value: --no-supervisor -q
resources:
limits:
memory: 500Mi
requests:
cpu: 100m
memory: 200Mi
volumeMounts:
- name: varlog
mountPath: /var/log
- name: varlibdockercontainers
mountPath: /var/lib/docker/containers
readOnly: true
- name: libsystemddir
mountPath: /host/lib
readOnly: true
- name: config-volume
mountPath: /etc/fluent/config.d
nodeSelector:
beta.kubernetes.io/fluentd-ds-ready: "true"
terminationGracePeriodSeconds: 30
volumes:
- name: varlog
hostPath:
path: /var/log
- name: varlibdockercontainers
hostPath:
path: /var/lib/docker/containers
# It is needed to copy systemd library to decompress journals
- name: libsystemddir
hostPath:
path: /usr/lib64
- name: config-volume
configMap:
2018-03-06 22:33:18 +00:00
name: fluentd-es-config-v0.1.4