Puppet Class: scap::master

Defined in:
modules/scap/manifests/master.pp

Overview

SPDX-License-Identifier: Apache-2.0

class: scap::master

Sets up a scap master (currently deploy1002 and deploy2002)

Parameters

deployment_group

Unix group owning the MediaWiki deployment directories (formerly `wikidev`)

Parameters:

  • deployment_group (String)
  • common_path (Stdlib::Unixpath) (defaults to: '/srv/mediawiki')
  • common_source_path (Stdlib::Unixpath) (defaults to: '/srv/mediawiki-staging')
  • patches_path (Stdlib::Unixpath) (defaults to: '/srv/patches')
  • scap_source_path (Stdlib::Unixpath) (defaults to: '/srv/deployment/scap')
  • scap_k8s_releases (Stdlib::Unixpath) (defaults to: '/etc/helmfile-defaults/mediawiki/release')
  • deployment_hosts (Array[String]) (defaults to: [])


11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'modules/scap/manifests/master.pp', line 11

class scap::master(
    String $deployment_group,
    Stdlib::Unixpath $common_path        = '/srv/mediawiki',
    Stdlib::Unixpath $common_source_path = '/srv/mediawiki-staging',
    Stdlib::Unixpath $patches_path       = '/srv/patches',
    Stdlib::Unixpath $scap_source_path   = '/srv/deployment/scap',
    Stdlib::Unixpath $scap_k8s_releases  = '/etc/helmfile-defaults/mediawiki/release',
    Array[String] $deployment_hosts      = [],
){
    include network::constants

    # Required git package is provided by base::standard_packages class
    # Required bash-completion package is a standard priority Debian package and therefore installed by default
    ensure_packages([
        'python3-venv',
        'python3-service-checker',
        'python3-pygerrit2',
    ])

    git::clone { 'operations/mediawiki-config':
        ensure             => present,
        directory          => $common_source_path,
        owner              => 'mwdeploy',
        group              => $deployment_group,
        shared             => true,
        before             => Exec['fetch_mediawiki'],
        recurse_submodules => true,
    }

    git::clone { 'repos/releng/scap':
        ensure    => present,
        source    => 'gitlab',
        directory => $scap_source_path,
        owner     => 'scap',
        group     => $deployment_group,
        shared    => true,
    }

    file { $patches_path:
        ensure => 'directory',
        owner  => 'mwdeploy',
        group  => $deployment_group,
        mode   => '2775',
    }

    # Install the commit-msg hook from gerrit

    file { "${common_source_path}/.git/hooks/commit-msg":
        ensure  => present,
        owner   => 'mwdeploy',
        group   => $deployment_group,
        mode    => '0775',
        source  => 'puppet:///modules/scap/commit-msg',
        require => Git::Clone['operations/mediawiki-config'],
    }

    ## Bootstrap Scap

    # This dir needs to match the home of the user defined in class scap::user
    $scap_home = '/var/lib/scap'

    exec { 'bootstrap_scap_master':
      command => "${scap_source_path}/bin/bootstrap_scap_master.sh scap ${scap_source_path}",
      creates => "${scap_home}/scap/bin/scap",
    }

    file { '/usr/bin/scap':
      ensure  => 'link',
      target  => "${scap_home}/scap/bin/scap",
      owner   => 'root',
      group   => 'root',
      mode    => '0755',
      require => Exec['bootstrap_scap_master']
    }

    rsync::server::module { 'scap-install-staging':
      path        => $scap_home,
      read_only   => 'yes',
      hosts_allow => join($::network::constants::deployable_networks, ' ')
    }

    ## End bootstrap Scap

    rsync::server::module { 'common':
        path        => $common_source_path,
        read_only   => 'yes',
        hosts_allow => $::network::constants::mw_appserver_networks;
    }

    rsync::server::module { 'patches':
        path        => $patches_path,
        read_only   => 'yes',
        hosts_allow => $deployment_hosts
    }

    rsync::server::module { 'releases':
        path        => $scap_k8s_releases,
        read_only   => 'yes',
        hosts_allow => $deployment_hosts
    }

    class { 'scap::l10nupdate': }

    file { '/usr/local/bin/scap-master-sync':
        ensure => present,
        owner  => 'root',
        group  => 'root',
        mode   => '0555',
        source => 'puppet:///modules/scap/scap-master-sync',
    }

    # Allow rsync of common module to mediawiki-staging as root.
    # This is for master-master sync of /srv/mediawiki-staging
    sudo::user { 'scap-master-sync':
        user       => 'mwdeploy',
        privileges => [
            'ALL = (root) NOPASSWD: /usr/local/bin/scap-master-sync',
        ]
    }

    wmflib::dir::mkdir_p('/etc/scap')

    # T315255
    file { '/etc/scap/phabricator_token':
        ensure    => present,
        owner     => 'root',
        group     => $deployment_group,
        mode      => '0440',
        content   => secret('scap/phabricator_token'),
        show_diff => false,
    }
}