forked from thanos-io/thanos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thanos-store-gateway.yaml
66 lines (65 loc) · 1.41 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
apiVersion: apps/v1beta1
kind: StatefulSet
metadata:
name: thanos-store-gateway
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:master-2019-02-21-0c730c1
args:
- store
- --log.level=debug
- --data-dir=/data
- --cluster.disable
- --index-cache-size=500MB
- --chunk-pool-size=500MB
- |
--objstore.config=type: S3
config:
bucket: demo-bucket
access_key: smth
secret_key: Need8Chars
endpoint: %%S3_ENDPOINT%%
insecure: true
ports:
- name: http
containerPort: 10902
- name: grpc
containerPort: 10901
resources:
limits:
cpu: "1"
memory: 1Gi
requests:
cpu: "1"
memory: 1Gi
---
apiVersion: v1
kind: Service
metadata:
labels:
app: thanos-store-gateway
name: thanos-store-gateway
spec:
ports:
- port: 10901
protocol: TCP
targetPort: grpc
name: grpc
selector:
app: thanos-store-gateway
type: NodePort