Puppet Class: profile::ci::shipyard

Defined in:
modules/profile/manifests/ci/shipyard.pp

Overview

SPDX-License-Identifier: Apache-2.0

Parameters:

  • registry (Stdlib::Fqdn) (defaults to: lookup('docker::registry'))
  • password (String) (defaults to: lookup('profile::ci::shipyard::ci_build_user_password'))
  • http_proxy (Optional[Stdlib::HTTPUrl]) (defaults to: lookup('http_proxy', {default_value => undef}))


2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'modules/profile/manifests/ci/shipyard.pp', line 2

class profile::ci::shipyard(
    Stdlib::Fqdn $registry = lookup('docker::registry'),
    String $password = lookup('profile::ci::shipyard::ci_build_user_password'),
    Optional[Stdlib::HTTPUrl] $http_proxy = lookup('http_proxy', {default_value => undef}),
){

    class { '::docker_pkg': }

    file { '/etc/docker-pkg/':
        ensure => directory,
        owner  => root,
        group  => root,
        mode   => '0755',
    }

    # TODO: make jenkins able to read this file as well?
    file { '/etc/docker-pkg/integration.yaml':
        ensure  => present,
        content => template('profile/ci/shipyard/docker-pkg-integration-config.yaml.erb'),
        owner   => 'root',
        group   => 'contint-admins',
        mode    => '0440'
    }
}