Skip to content

Commit

Permalink
Fixes frontend args in libsonnet. (#1739)
Browse files Browse the repository at this point in the history
I forgot to update it to use common args.

Signed-off-by: Cyril Tovena <cyril.tovena@gmail.com>
  • Loading branch information
cyriltovena authored Feb 25, 2020
1 parent cdd60cd commit 0ffa65a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions production/ksonnet/loki/query-frontend.libsonnet
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
local container = $.core.v1.container,

query_frontend_args:: {
'config.file': '/etc/loki/config.yaml',
target: 'query-frontend',
'log.level': 'debug',
},
query_frontend_args::
$._config.commonArgs {
target: 'query-frontend',
'log.level': 'debug',
},

query_frontend_container::
container.new('query-frontend', $._images.query_frontend) +
Expand Down

0 comments on commit 0ffa65a

Please sign in to comment.