90 lines
2.3 KiB
YAML
90 lines
2.3 KiB
YAML
|
# Deploy a Metricbeat instance per node for node metrics retrieval
|
||
|
apiVersion: extensions/v1beta1
|
||
|
kind: DaemonSet
|
||
|
metadata:
|
||
|
name: metricbeat
|
||
|
namespace: kube-system
|
||
|
labels:
|
||
|
k8s-app: metricbeat
|
||
|
spec:
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
k8s-app: metricbeat
|
||
|
spec:
|
||
|
serviceAccountName: metricbeat
|
||
|
terminationGracePeriodSeconds: 30
|
||
|
hostNetwork: true
|
||
|
dnsPolicy: ClusterFirstWithHostNet
|
||
|
containers:
|
||
|
- name: metricbeat
|
||
|
image: docker.elastic.co/beats/metricbeat:%VERSION%
|
||
|
args: [
|
||
|
"-c", "/etc/metricbeat.yml",
|
||
|
"-e",
|
||
|
"-system.hostfs=/hostfs",
|
||
|
]
|
||
|
env:
|
||
|
- name: ELASTICSEARCH_HOST
|
||
|
value: elasticsearch
|
||
|
- name: ELASTICSEARCH_PORT
|
||
|
value: "9200"
|
||
|
- name: ELASTICSEARCH_USERNAME
|
||
|
value: elastic
|
||
|
- name: ELASTICSEARCH_PASSWORD
|
||
|
value: changeme
|
||
|
- name: ELASTIC_CLOUD_ID
|
||
|
value:
|
||
|
- name: ELASTIC_CLOUD_AUTH
|
||
|
value:
|
||
|
- name: NODE_NAME
|
||
|
valueFrom:
|
||
|
fieldRef:
|
||
|
fieldPath: spec.nodeName
|
||
|
securityContext:
|
||
|
runAsUser: 0
|
||
|
resources:
|
||
|
limits:
|
||
|
memory: 200Mi
|
||
|
requests:
|
||
|
cpu: 100m
|
||
|
memory: 100Mi
|
||
|
volumeMounts:
|
||
|
- name: config
|
||
|
mountPath: /etc/metricbeat.yml
|
||
|
readOnly: true
|
||
|
subPath: metricbeat.yml
|
||
|
- name: modules
|
||
|
mountPath: /usr/share/metricbeat/modules.d
|
||
|
readOnly: true
|
||
|
- name: dockersock
|
||
|
mountPath: /var/run/docker.sock
|
||
|
- name: proc
|
||
|
mountPath: /hostfs/proc
|
||
|
readOnly: true
|
||
|
- name: cgroup
|
||
|
mountPath: /hostfs/sys/fs/cgroup
|
||
|
readOnly: true
|
||
|
volumes:
|
||
|
- name: proc
|
||
|
hostPath:
|
||
|
path: /proc
|
||
|
- name: cgroup
|
||
|
hostPath:
|
||
|
path: /sys/fs/cgroup
|
||
|
- name: dockersock
|
||
|
hostPath:
|
||
|
path: /var/run/docker.sock
|
||
|
- name: config
|
||
|
configMap:
|
||
|
defaultMode: 0600
|
||
|
name: metricbeat-daemonset-config
|
||
|
- name: modules
|
||
|
configMap:
|
||
|
defaultMode: 0600
|
||
|
name: metricbeat-daemonset-modules
|
||
|
- name: data
|
||
|
hostPath:
|
||
|
path: /var/lib/metricbeat-data
|
||
|
type: DirectoryOrCreate
|