mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +00:00
puppet: Document smokescreen installation, and move to puppet/zulip/.
This is more broadly useful than for just Kandra; provide documentation and means to install Smokescreen for stand-alone servers, and motivate its use somewhat more.
This commit is contained in:
committed by
Tim Abbott
parent
a58e832884
commit
d938dd9d4a
57
puppet/zulip/manifests/profile/smokescreen.pp
Normal file
57
puppet/zulip/manifests/profile/smokescreen.pp
Normal file
@@ -0,0 +1,57 @@
|
||||
# @summary Outgoing HTTP CONNECT proxy for HTTP/HTTPS on port 4750.
|
||||
#
|
||||
class zulip::profile::smokescreen {
|
||||
include zulip::profile::base
|
||||
include zulip::supervisor
|
||||
|
||||
$golang_version = '1.14.10'
|
||||
zulip::sha256_tarball_to { 'golang':
|
||||
url => "https://golang.org/dl/go${golang_version}.linux-amd64.tar.gz",
|
||||
sha256 => '66eb6858f375731ba07b0b33f5c813b141a81253e7e74071eec3ae85e9b37098',
|
||||
install => {
|
||||
'go/' => "/srv/golang-${golang_version}/",
|
||||
},
|
||||
}
|
||||
file { '/srv/golang':
|
||||
ensure => 'link',
|
||||
target => "/srv/golang-${golang_version}/",
|
||||
require => Zulip::Sha256_tarball_to['golang'],
|
||||
}
|
||||
|
||||
$version = '0.0.2'
|
||||
zulip::sha256_tarball_to { 'smokescreen':
|
||||
url => "https://github.com/stripe/smokescreen/archive/v${version}.tar.gz",
|
||||
sha256 => '7255744f89a62a103fde97d28e3586644d30191b4e3d1f62c9a99e13d732a012',
|
||||
install => {
|
||||
"smokescreen-${version}/" => "/srv/smokescreen-src-${version}/",
|
||||
},
|
||||
}
|
||||
exec { 'compile smokescreen':
|
||||
command => "/srv/golang/bin/go build -o /usr/local/bin/smokescreen-${version}",
|
||||
cwd => "/srv/smokescreen-src-${version}/",
|
||||
# GOCACHE is required; nothing is written to GOPATH, but it is required to be set
|
||||
environment => ['GOCACHE=/tmp/gocache', 'GOPATH=/root/go'],
|
||||
creates => "/usr/local/bin/smokescreen-${version}",
|
||||
require => [Zulip::Sha256_tarball_to['golang'], Zulip::Sha256_tarball_to['smokescreen']],
|
||||
}
|
||||
|
||||
file { '/usr/local/bin/smokescreen':
|
||||
ensure => 'link',
|
||||
target => "/usr/local/bin/smokescreen-${version}",
|
||||
require => Exec['compile smokescreen'],
|
||||
notify => Service[supervisor],
|
||||
}
|
||||
|
||||
file { '/etc/supervisor/conf.d/smokescreen.conf':
|
||||
ensure => file,
|
||||
require => [
|
||||
Package[supervisor],
|
||||
File['/usr/local/bin/smokescreen'],
|
||||
],
|
||||
owner => 'root',
|
||||
group => 'root',
|
||||
mode => '0644',
|
||||
content => template('zulip/supervisor/smokescreen.conf.erb'),
|
||||
notify => Service[supervisor],
|
||||
}
|
||||
}
|
||||
@@ -1,58 +1,5 @@
|
||||
# @summary Outgoing HTTP CONNECT proxy for HTTP/HTTPS on port 4750.
|
||||
#
|
||||
class zulip_ops::profile::smokescreen {
|
||||
include zulip_ops::profile::base
|
||||
include zulip::supervisor
|
||||
include zulip::profile::smokescreen
|
||||
include zulip_ops::camo
|
||||
|
||||
$golang_version = '1.14.10'
|
||||
zulip::sha256_tarball_to { 'golang':
|
||||
url => "https://golang.org/dl/go${golang_version}.linux-amd64.tar.gz",
|
||||
sha256 => '66eb6858f375731ba07b0b33f5c813b141a81253e7e74071eec3ae85e9b37098',
|
||||
install => {
|
||||
'go/' => "/srv/golang-${golang_version}/",
|
||||
},
|
||||
}
|
||||
file { '/srv/golang':
|
||||
ensure => 'link',
|
||||
target => "/srv/golang-${golang_version}/",
|
||||
require => Zulip::Sha256_tarball_to['golang'],
|
||||
}
|
||||
|
||||
$version = '0.0.2'
|
||||
zulip::sha256_tarball_to { 'smokescreen':
|
||||
url => "https://github.com/stripe/smokescreen/archive/v${version}.tar.gz",
|
||||
sha256 => '7255744f89a62a103fde97d28e3586644d30191b4e3d1f62c9a99e13d732a012',
|
||||
install => {
|
||||
"smokescreen-${version}/" => "/srv/smokescreen-src-${version}/",
|
||||
},
|
||||
}
|
||||
exec { 'compile smokescreen':
|
||||
command => "/srv/golang/bin/go build -o /usr/local/bin/smokescreen-${version}",
|
||||
cwd => "/srv/smokescreen-src-${version}/",
|
||||
# GOCACHE is required; nothing is written to GOPATH, but it is required to be set
|
||||
environment => ['GOCACHE=/tmp/gocache', 'GOPATH=/root/go'],
|
||||
creates => "/usr/local/bin/smokescreen-${version}",
|
||||
require => [Zulip::Sha256_tarball_to['golang'], Zulip::Sha256_tarball_to['smokescreen']],
|
||||
}
|
||||
|
||||
file { '/usr/local/bin/smokescreen':
|
||||
ensure => 'link',
|
||||
target => "/usr/local/bin/smokescreen-${version}",
|
||||
require => Exec['compile smokescreen'],
|
||||
notify => Service[supervisor],
|
||||
}
|
||||
|
||||
file { '/etc/supervisor/conf.d/smokescreen.conf':
|
||||
ensure => file,
|
||||
require => [
|
||||
Package[supervisor],
|
||||
File['/usr/local/bin/smokescreen'],
|
||||
],
|
||||
owner => 'root',
|
||||
group => 'root',
|
||||
mode => '0644',
|
||||
content => template('zulip_ops/supervisor/conf.d/smokescreen.conf.erb'),
|
||||
notify => Service[supervisor],
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user