Skip to content

Commit

Permalink
Fix tempo-query configmap - support http_api_prefix on query-frontend (
Browse files Browse the repository at this point in the history
…#662)

Signed-off-by: Annanay <[email protected]>
  • Loading branch information
annanay25 authored Apr 21, 2021
1 parent 2d56b67 commit 0c17f9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions operations/jsonnet/microservices/config.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
},
ballast_size_mbs: '1024',
port: 3100,
http_api_prefix: '',
gossip_ring_port: 7946,
backend: error 'Must specify a backend', // gcs|s3
bucket: error 'Must specify a bucket',
Expand Down
2 changes: 1 addition & 1 deletion operations/jsonnet/microservices/configmap.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
configMap.new('tempo-query') +
configMap.withData({
'tempo-query.yaml': $.util.manifestYaml({
backend: 'localhost:%d' % $._config.port,
backend: 'localhost:%d%s' % [$._config.port, $._config.http_api_prefix],
}),
}),
}

0 comments on commit 0c17f9d

Please sign in to comment.