Puppet Class: profile::thanos::bucket_web

Defined in:
modules/profile/manifests/thanos/bucket_web.pp

Overview

SPDX-License-Identifier: Apache-2.0

Parameters:

  • objstore_account (Hash[String, String]) (defaults to: lookup('profile::thanos::objstore_account'))
  • objstore_password (String) (defaults to: lookup('profile::thanos::objstore_password'))


2
3
4
5
6
7
8
9
10
11
12
13
14
15
# File 'modules/profile/manifests/thanos/bucket_web.pp', line 2

class profile::thanos::bucket_web (
    Hash[String, String] $objstore_account = lookup('profile::thanos::objstore_account'),
    String $objstore_password = lookup('profile::thanos::objstore_password'),
) {
    $http_port = 15902

    class { 'thanos::bucket_web':
        objstore_account  => $objstore_account,
        objstore_password => $objstore_password,
        http_port         => $http_port,
    }

    class { 'thanos::bucket_query_tools': }
}