diff options
author | Leif Johansson <leifj@sunet.se> | 2015-05-26 13:16:49 +0200 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2015-05-26 13:16:49 +0200 |
commit | d284dcced21429aa414f21b4f5e67bdebc651971 (patch) | |
tree | b7f1a85a8671e3ca268597ae68d93b446ab68bd0 /global/overlay/etc/puppet/manifests/catlfish/storage.pp | |
parent | 726fced83ba306910e2e1ce91d40da5db04358d1 (diff) |
known roots, nw configct-ops-2015-05-26-v01
Diffstat (limited to 'global/overlay/etc/puppet/manifests/catlfish/storage.pp')
-rw-r--r-- | global/overlay/etc/puppet/manifests/catlfish/storage.pp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/global/overlay/etc/puppet/manifests/catlfish/storage.pp b/global/overlay/etc/puppet/manifests/catlfish/storage.pp index a325f3e..2e7191e 100644 --- a/global/overlay/etc/puppet/manifests/catlfish/storage.pp +++ b/global/overlay/etc/puppet/manifests/catlfish/storage.pp @@ -1,18 +1,19 @@ define catlfish::storage( + $logname = undef, $image = 'docker.sunet.se/ctct/catlfish-dev', $version = 'latest' ) { $base = '/var/local/db' - $db = "${base}/${name}" + $db = "${base}/${logname}" file {$base: ensure => directory } -> file {$db: ensure => directory } -> - sunet::docker_run {'${name}_storage': + sunet::docker_run {"${name}_catlfish": image => $image, imagetag => $version, volumes => ["/usr/local/etc/catlfish:/usr/local/etc/catlfish:ro","${db}:/var/local/db/catlfish"], ports => ["8081:8081"], - command => ["storage"] + command => ["storage ${name}"] } ufw:allow { "${name}-allow-8081-acl0": ip => '130.242.125.0/24', |