-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path02-monitored-logstash.yaml
110 lines (110 loc) · 2.55 KB
/
02-monitored-logstash.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
---
apiVersion: v1
kind: ConfigMap
metadata:
name: logstash-configmap
data:
logstash.yml: |
http.host: "0.0.0.0"
path.config: /usr/share/logstash/pipeline
monitoring.enabled: false
monitoring.cluster_uuid: changeme
logstash.conf: |
input {
heartbeat {
id => "heartbeat_input"
message => "ok"
interval => 60
}
}
filter {
}
output {
elasticsearch {
hosts => ["https://elasticsearch-es-http.default.svc:9200"]
user => "elastic"
password => "changeme"
index => "logstash-heartbeat-%{+YYYY.MM}"
cacert => "/usr/share/logstash/config/certs/tls.crt"
ssl_certificate_verification => false
}
}
---
apiVersion: v1
kind: Pod
metadata:
labels:
monitoring_label_type: ls
name: logstash-01
spec:
containers:
- image: docker.elastic.co/logstash/logstash:7.13.0
name: logstash
volumeMounts:
- name: config-volume
mountPath: /usr/share/logstash/config
- name: logstash-pipeline-volume
mountPath: /usr/share/logstash/pipeline
- name: elasticsearch-ca
readOnly: true
mountPath: /usr/share/logstash/config/certs
restartPolicy: OnFailure
volumes:
- name: config-volume
configMap:
name: logstash-configmap
items:
- key: logstash.yml
path: logstash.yml
- name: logstash-pipeline-volume
configMap:
name: logstash-configmap
items:
- key: logstash.conf
path: logstash.conf
- name: elasticsearch-ca
secret:
secretName: elasticsearch-es-http-ca-internal
defaultMode: 420
optional: false
status: {}
---
apiVersion: v1
kind: Pod
metadata:
labels:
monitoring_label_type: ls
name: logstash-02
spec:
containers:
- image: docker.elastic.co/logstash/logstash:7.13.0
name: logstash2
volumeMounts:
- name: config-volume
mountPath: /usr/share/logstash/config
- name: logstash-pipeline-volume
mountPath: /usr/share/logstash/pipeline
- name: elasticsearch-ca
readOnly: true
mountPath: /usr/share/logstash/config/certs
restartPolicy: OnFailure
volumes:
- name: config-volume
configMap:
name: logstash-configmap
items:
- key: logstash.yml
path: logstash.yml
- name: logstash-pipeline-volume
configMap:
name: logstash-configmap
items:
- key: logstash.conf
path: logstash.conf
- name: elasticsearch-ca
secret:
secretName: elasticsearch-es-http-ca-internal
defaultMode: 420
optional: false
status: {}
---