diff options
author | Leif Johansson <leifj@sunet.se> | 2015-02-10 16:02:09 +0100 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2015-02-10 16:02:09 +0100 |
commit | 5038dafd0c17d23f5e4693d697db6c935afeaa65 (patch) | |
tree | d5007222613f92d4932f11733e9252db4a2bed80 /global/overlay/etc/puppet | |
parent | 2fac7cc099745cd993d43c8d1ef5c65b37d75796 (diff) |
web cluster imagessunet-ops-2015-02-19-v01sunet-ops-2015-02-10-v05
Diffstat (limited to 'global/overlay/etc/puppet')
-rw-r--r-- | global/overlay/etc/puppet/cosmos-rules.yaml | 4 | ||||
-rw-r--r-- | global/overlay/etc/puppet/manifests/cosmos-site.pp | 14 |
2 files changed, 18 insertions, 0 deletions
diff --git a/global/overlay/etc/puppet/cosmos-rules.yaml b/global/overlay/etc/puppet/cosmos-rules.yaml index 1a05060..4b93245 100644 --- a/global/overlay/etc/puppet/cosmos-rules.yaml +++ b/global/overlay/etc/puppet/cosmos-rules.yaml @@ -44,3 +44,7 @@ www2.eduid.se: dockerhost: '^web-.+\.sunet\.se$': dockerhost: +'^web-a[0-9]+\.sunet\.se$': + webappserver: +'^web-f[0-9]+\.sunet\.se$': + webfrontend: diff --git a/global/overlay/etc/puppet/manifests/cosmos-site.pp b/global/overlay/etc/puppet/manifests/cosmos-site.pp index 9c40748..4c4d5d0 100644 --- a/global/overlay/etc/puppet/manifests/cosmos-site.pp +++ b/global/overlay/etc/puppet/manifests/cosmos-site.pp @@ -790,3 +790,17 @@ class quantis { apt::ppa {'ppa:ndn/quantispci': } package {'quantispci-dkms': } } + +class webcommon { + docker::image {'coreos/etcd': } +} + +class webfrontend { + class { 'webcommon': } + docker::image {'docker.sunet.se/pound': } + docker::image {'docker.sunet.se/varnish': } +} + +class webappserver { + class { 'webcommon': } +} |