Skip to content

Commit fa782be

Browse files
authored
Merge pull request #4 from inuits/master
Fixed directory variables
2 parents af5a51e + 2b870c1 commit fa782be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

defaults/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,17 @@ cortex_storage:
5353

5454
cortex_blocks_storage:
5555
tsdb:
56-
dir: /tmp/cortex/tsdb
56+
dir: "{{ cortex_db_dir }}/tsdb"
5757

5858
bucket_store:
59-
sync_dir: /tmp/cortex/tsdb-sync
59+
sync_dir: "{{ cortex_db_dir }}/tsdb-sync"
6060

6161
backend: filesystem
6262
filesystem:
6363
dir: ./data/tsdb
6464

6565
cortex_compactor:
66-
data_dir: /tmp/cortex/compactor
66+
data_dir: "{{ cortex_db_dir }}/compactor"
6767
sharding_ring:
6868
kvstore:
6969
store: inmemory

0 commit comments

Comments
 (0)