Puppet Class: profile::analytics::cluster::repositories::statistics

Defined in:
modules/profile/manifests/analytics/cluster/repositories/statistics.pp

Overview

SPDX-License-Identifier: Apache-2.0

Class profile::analytics::cluster::repositories::statistics

Specific repositories that should be deployed on analytics statistics nodes and the hadoop coordinator.



7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'modules/profile/manifests/analytics/cluster/repositories/statistics.pp', line 7

class profile::analytics::cluster::repositories::statistics {

    # Repository needed to help various scripts to get the
    # mapping between wiki name and section (example: enwiki => s1).
    # The information is in turn used to get the mapping between
    # wiki name and dbstore host on which the correspondent database
    # is deployed.
    git::clone { 'operations/mediawiki-config':
        ensure             => 'latest',
        directory          => '/srv/mediawiki-config',
        recurse_submodules => true,
    }
}