forked from voxpupuli/puppet-gitlab_ci_runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup_acceptance_node.pp
59 lines (50 loc) · 1.6 KB
/
setup_acceptance_node.pp
1
2
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
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
# The omnibus installer use the following algorithm to know what to do.
# https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/files/gitlab-cookbooks/runit/recipes/default.rb
# If this peace of code trigger docker case, the installer hang indefinitly.
file {'/.dockerenv':
ensure => absent,
}
package { 'curl':
ensure => present,
}
# https://gitlab.com/gitlab-org/omnibus-gitlab/issues/2229
# There is no /usr/share/zoneinfo in latest Docker image for ubuntu 16.04
# Gitlab installer fail without this file
if $facts['os']['release']['major'] in ['16.04', '18.04'] {
package { 'tzdata':
ensure => present,
}
}
# Setup Puppet Bolt
$bolt_config = @("BOLTPROJECT"/L)
modulepath: "/etc/puppetlabs/code/modules:/etc/puppetlabs/code/environments/production/modules"
analytics: false
| BOLTPROJECT
package { 'puppet-bolt':
ensure => installed,
}
file { [ '/root/.puppetlabs', '/root/.puppetlabs/bolt', '/root/.puppetlabs/etc', '/root/.puppetlabs/etc/bolt']:
ensure => directory,
}
# Needs to existing to not trigger a warning sign...
file { '/root/.puppetlabs/etc/bolt/analytics.yaml':
ensure => file,
}
file { '/root/.puppetlabs/bolt/bolt-project.yaml':
ensure => file,
content => $bolt_config,
}
file_line { '/etc/hosts-gitlab':
path => '/etc/hosts',
line => "${facts['gitlab_ip']} gitlab",
}
file_line { '/etc/hosts-squid':
path => '/etc/hosts',
line => "${facts['squid_ip']} squid",
}
# Needed for os.distro.codebase fact on ubuntu 16/18 on puppet 6
if $facts['os']['name'] == 'Ubuntu' and versioncmp($facts['puppetversion'], '7.0.0') < 0 {
package{'lsb-release':
ensure => present,
}
}