Skip to content

Commit

Permalink
Expose vulture configuration in jsonnet
Browse files Browse the repository at this point in the history
  • Loading branch information
zalegrala committed Oct 21, 2021
1 parent 8d05eed commit 89b4d54
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions operations/jsonnet/microservices/config.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@
tempoPushUrl: 'http://distributor',
tempoQueryUrl: 'http://query-frontend:%s' % $._config.port,
tempoOrgId: '',
tempoRetentionDuration: '',
tempoSearchBackoffDuration: '',
tempoReadBackoffDuration: '',
tempoWriteBackoffDuration: '',
},
ballast_size_mbs: '1024',
port: 3200,
Expand Down
4 changes: 4 additions & 0 deletions operations/jsonnet/microservices/vulture.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
'-tempo-push-url=' + $._config.vulture.tempoPushUrl,
'-tempo-query-url=' + $._config.vulture.tempoQueryUrl,
'-tempo-org-id=' + $._config.vulture.tempoOrgId,
'-tempo-retention-duration=' + $._config.vulture.tempoRetentionDuration,
'-tempo-search-backoff-duration=' + $._config.vulture.tempoSearchBackoffDuration,
'-tempo-read-backoff-duration=' + $._config.vulture.tempoReadBackoffDuration,
'-tempo-write-backoff-duration=' + $._config.vulture.tempoWriteBackoffDuration,
]) +
k.util.resourcesRequests('50m', '100Mi') +
k.util.resourcesLimits('100m', '500Mi'),
Expand Down

0 comments on commit 89b4d54

Please sign in to comment.