Skip to content

Commit

Permalink
fix(infra): make a successful connection between tempo and minio
Browse files Browse the repository at this point in the history
  • Loading branch information
donghun1214 committed Sep 27, 2024
1 parent 2d0a363 commit 1c7ca89
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
6 changes: 3 additions & 3 deletions config/tempo/tempo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ storage:
path: /tmp/tempo/wal # where to store the the wal locally
s3:
bucket: tempo # how to store data in s3
endpoint: minio:9000
access_key: ${MINIO_ROOT_USER}
secret_key: ${MINIO_ROOT_PASSWORD}
endpoint: "115.145.160.239:9000"
access_key: skku #MINIO_ROOT_USER
secret_key: skku1234 #MINIO_ROOT_PASSWORD
insecure: true
6 changes: 2 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ services:
image: grafana/tempo:latest
container_name: tempo
environment:
- MINIO_ROOT_PASSWORD
- MINIO_ROOT_USER
MINIO_ROOT_USER: "skku"
MINIO_ROOT_PASSWORD: "skku1234"
ports:
- "3200:3200" # tempo
- "4317:4317" # otlp grpc
Expand All @@ -147,8 +147,6 @@ services:
command:
- "-config.file=/etc/tempo.yml"
- "-config.expand-env=true"
depends_on:
- minio
restart: always

grafana:
Expand Down

0 comments on commit 1c7ca89

Please sign in to comment.