-
Notifications
You must be signed in to change notification settings - Fork 1
/
sidecar.yaml
293 lines (293 loc) · 7.53 KB
/
sidecar.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
apiVersion: v1
kind: Service
metadata:
labels:
app: prometheus
name: prometheus-0
spec:
ports:
- port: 9090
protocol: TCP
targetPort: http-prometheus
name: http-prometheus
nodePort: 30001
selector:
statefulset.kubernetes.io/pod-name: prometheus-0
type: NodePort
---
# We want to be able to access each replica.
apiVersion: v1
kind: Service
metadata:
labels:
app: prometheus
name: prometheus-1
spec:
ports:
- port: 9090
protocol: TCP
targetPort: http-prometheus
name: http-prometheus
nodePort: 30002
selector:
statefulset.kubernetes.io/pod-name: prometheus-1
type: NodePort
---
# minikube limitation:
# https://github.com/kubernetes/minikube/issues/3351#issuecomment-459898556
apiVersion: v1
kind: Service
metadata:
labels:
app: prometheus
name: sidecar-0
spec:
ports:
- port: 10901
protocol: TCP
targetPort: grpc
name: grpc
nodePort: 30901
selector:
statefulset.kubernetes.io/pod-name: prometheus-0
type: NodePort
---
apiVersion: v1
kind: Service
metadata:
labels:
app: prometheus
name: sidecar-1
spec:
ports:
- port: 10901
protocol: TCP
targetPort: grpc
name: grpc
nodePort: 30902
selector:
statefulset.kubernetes.io/pod-name: prometheus-1
type: NodePort
---
apiVersion: apps/v1beta1
kind: StatefulSet
metadata:
name: prometheus
labels:
app: prometheus
spec:
serviceName: "prometheus"
replicas: 2
selector:
matchLabels:
app: prometheus
template:
metadata:
labels:
app: prometheus
# We will use this label to put all StoreAPis
# under the same headless service for
# SRV lookup: thanos-store-api.default.svc
thanos-store-api: "true"
spec:
securityContext:
runAsUser: 1000
fsGroup: 2000
runAsNonRoot: true
serviceAccountName: prometheus
containers:
- name: prometheus
image: quay.io/prometheus/prometheus:v2.6.1
args:
- --config.file=/etc/prometheus-shared/prometheus.yaml
- --storage.tsdb.path=/var/prometheus
- --web.enable-lifecycle
# TODO: Make retention shorter once all old blocks will be uploaded (!)
- --storage.tsdb.retention=2w
# Disable compaction.
- --storage.tsdb.min-block-duration=2h
- --storage.tsdb.max-block-duration=2h
- --web.enable-admin-api
ports:
- name: http-prometheus
containerPort: 9090
volumeMounts:
- name: config-shared
mountPath: /etc/prometheus-shared
- name: rules
mountPath: /etc/prometheus/rules
- name: prometheus
mountPath: /var/prometheus
- name: thanos
image: improbable/thanos:v0.3.0
args:
- sidecar
- --log.level=debug
- --tsdb.path=/var/prometheus
- --prometheus.url=http://localhost:9090
- --cluster.disable
- --reloader.config-file=/etc/prometheus/prometheus.yaml.tmpl
- --reloader.config-envsubst-file=/etc/prometheus-shared/prometheus.yaml
env:
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
ports:
- name: http-sidecar
containerPort: 10902
- name: grpc
containerPort: 10901
volumeMounts:
- name: prometheus
mountPath: /var/prometheus
- name: config-shared
mountPath: /etc/prometheus-shared
- name: config
mountPath: /etc/prometheus
volumes:
- name: config
configMap:
name: prometheus
- name: rules
configMap:
name: prometheus-rules
- name: config-shared
emptyDir: {}
updateStrategy:
type: RollingUpdate
volumeClaimTemplates:
- metadata:
labels:
app: prometheus
name: prometheus
spec:
storageClassName: prom-manual
accessModes:
- ReadWriteOnce
resources:
requests:
# Normally, probably 15x more (:
storage: 1Gi
---
apiVersion: v1
kind: ConfigMap
metadata:
name: prometheus
data:
prometheus.yaml.tmpl: |-
# Inspired by https://github.com/prometheus/prometheus/blob/master/documentation/examples/prometheus-kubernetes.yml
global:
scrape_interval: 15s
scrape_timeout: 10s
external_labels:
cluster: cluster1
# Each Prometheus has to have unique labels.
replica: $(HOSTNAME)
rule_files:
- /etc/prometheus/rules/*rules.yaml
scrape_configs:
- job_name: kube-apiserver
scheme: https
kubernetes_sd_configs:
- role: endpoints
bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
tls_config:
ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
relabel_configs:
- source_labels: [__meta_kubernetes_namespace, __meta_kubernetes_service_name, __meta_kubernetes_endpoint_port_name]
regex: default;kubernetes;https
action: keep
- job_name: kubelet
scheme: https
kubernetes_sd_configs:
- role: node
bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
tls_config:
ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
relabel_configs:
- target_label: __address__
replacement: kubernetes.default.svc:443
- source_labels: [__meta_kubernetes_node_name]
regex: (.+)
target_label: __metrics_path__
replacement: /api/v1/nodes/${1}/proxy/metrics/cadvisor
metric_relabel_configs:
- source_labels: [pod_name]
regex: ^(.+)$
target_label: pod
- regex: id
action: labeldrop
- regex: name
action: labeldrop
- regex: pod_name
action: labeldrop
- target_label: cluster
replacement: cluster1
- job_name: kube-pods
honor_labels: true
kubernetes_sd_configs:
- role: pod
relabel_configs:
- source_labels: [__meta_kubernetes_pod_container_port_name]
regex: ^(http|http-.+|metrics)$
action: keep
- source_labels: [__meta_kubernetes_pod_label_k8s_app]
target_label: job
- source_labels: [__meta_kubernetes_pod_label_app]
regex: ^(.+)$
target_label: job
- source_labels: [job, __meta_kubernetes_pod_container_port_name]
regex: ^(.*);http-(.+)$
target_label: job
- source_labels: [__meta_kubernetes_pod_namespace]
target_label: namespace
- source_labels: [__meta_kubernetes_pod_name]
target_label: pod
- target_label: cluster
replacement: cluster1
metric_relabel_configs:
- source_labels: [pod_name]
regex: ^(.+)$
target_label: pod
- regex: pod_name
action: labeldrop
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: prometheus
---
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRole
metadata:
name: prometheus
namespace: default
rules:
- apiGroups: [""]
resources:
- nodes
- nodes/proxy
- services
- endpoints
- pods
verbs: ["get", "list", "watch"]
- apiGroups: [""]
resources:
- configmaps
verbs: ["get"]
- nonResourceURLs: ["/metrics"]
verbs: ["get"]
---
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRoleBinding
metadata:
name: prometheus
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: prometheus
subjects:
- kind: ServiceAccount
name: prometheus
namespace: default