forked from pablokbs/peladonerd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
04-thanos-store-gateway.yaml
49 lines (49 loc) · 1.15 KB
/
04-thanos-store-gateway.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
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: thanos-store-gateway
namespace: monitoring
labels:
app: thanos-store-gateway
spec:
replicas: 1
selector:
matchLabels:
app: thanos-store-gateway
serviceName: thanos-store-gateway
template:
metadata:
labels:
app: thanos-store-gateway
thanos-store-api: "true"
spec:
containers:
- name: thanos
# TODO(bwplotka): Move to v0.3.2 once available.
image: improbable/thanos:v0.10.0
args:
- store
- --log.level=debug
- --data-dir=/data
- --cluster.disable
- --index-cache-size=500MB
- --chunk-pool-size=500MB
- --objstore.config=$(OBJSTORE_CONFIG)
env:
- name: OBJSTORE_CONFIG
valueFrom:
secretKeyRef:
key: thanos.yaml
name: thanos-objectstorage
ports:
- name: http
containerPort: 10902
- name: grpc
containerPort: 10901
resources:
limits:
cpu: "1"
memory: 1Gi
requests:
cpu: "100m"
memory: 256Mi