fix: add tempo s3 storage

This commit is contained in:
2024-09-26 19:38:28 +02:00
parent a1c6852173
commit 06b5b3e4a4
+26 -13
View File
@@ -1,18 +1,31 @@
tempo: tempo:
storage: storage:
trace: trace:
backend: s3 backend: s3
s3: s3:
bucket: tempo-traces bucket: tempo-traces
endpoint: http://10.255.241.30:30080 endpoint: http://10.255.241.30:30080
access_key: ... # optional. access key when using static credentials. access_key: ${S3SECRET}
secret_key: ... # optional. secret key when using static credentials. secret_key: ${S3KEY}
insecure: true # optional. enable if endpoint is http insecure: true
backend: local backend: local
local: local:
path: /var/tempo/traces path: /var/tempo/traces
wal: wal:
path: /var/tempo/wal path: /var/tempo/wal
extraArgs:
- -config.expand-env=true
extraEnv:
- name: S3KEY
valueFrom:
secretKeyRef:
name: tempo-s3
key: AWS_ACCESS_KEY_ID
- name: S3SECRET
valueFrom:
secretKeyRef:
name: tempo-s3
key: AWS_ACCESS_KEY_SECRET
tempoQuery: tempoQuery:
ingress: ingress: