Puppet Class: profile::thanos::query_frontend
- Defined in:
- modules/profile/manifests/thanos/query_frontend.pp
Overview
7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'modules/profile/manifests/thanos/query_frontend.pp', line 7
class profile::thanos::query_frontend (
Array[Stdlib::Host] $memcached_hosts = lookup('profile::thanos::query_frontend::memcached_hosts'),
) {
$http_port = 16902
class { 'thanos::query_frontend':
http_port => $http_port,
memcached_hosts => $memcached_hosts,
memcached_port => 11211,
# A little over a year max - T356788
max_query_length => '9000h',
}
}
|