Puppet Class: role::titan

Defined in:
modules/role/manifests/titan.pp

Overview



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'modules/role/manifests/titan.pp', line 3

class role::titan {
    system::role { 'titan':
        description => 'Titan hosts Thanos components',
    }

    include ::profile::base::production
    include ::profile::firewall

    include ::profile::lvs::realserver

    include ::profile::tlsproxy::envoy

    include ::profile::thanos::query
    include ::profile::thanos::query_frontend
    include ::profile::thanos::httpd

    include ::profile::thanos::store
    include ::profile::thanos::compact

    include ::profile::thanos::bucket_web

    include ::profile::thanos::rule
    include ::profile::alerts::deploy::thanos

    include ::profile::pyrra::api
    include ::profile::pyrra::filesystem
}