Puppet Class: role::ci

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

Overview

SPDX-License-Identifier: Apache-2.0

role::ci



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
30
31
32
33
34
35
36
# File 'modules/role/manifests/ci.pp', line 5

class role::ci {
    include profile::base::production
    include profile::ci::backup
    include profile::ci::firewall

    include profile::ci::jenkins
    include profile::ci::proxy_jenkins

    include profile::ci::agent

    include profile::ci::httpd
    include profile::tlsproxy::envoy
    include profile::ci::website

    include profile::prometheus::apache_exporter

    include profile::ci::docker
    include profile::ci::pipeline::publisher
    include profile::ci::shipyard
    include profile::ci::data_rsync
    include profile::local_dev::docker_publish

    include profile::zuul::merger

    include profile::zuul::server
    include profile::ci::proxy_zuul

    include profile::kubernetes::deployment_server
    include profile::kubernetes::client

    include profile::statsite
}