summaryrefslogtreecommitdiff
path: root/global/overlay/etc/puppet/manifests/cosmos-site.pp
diff options
context:
space:
mode:
Diffstat (limited to 'global/overlay/etc/puppet/manifests/cosmos-site.pp')
-rw-r--r--global/overlay/etc/puppet/manifests/cosmos-site.pp29
1 files changed, 28 insertions, 1 deletions
diff --git a/global/overlay/etc/puppet/manifests/cosmos-site.pp b/global/overlay/etc/puppet/manifests/cosmos-site.pp
index 06f2337..cea6c2f 100644
--- a/global/overlay/etc/puppet/manifests/cosmos-site.pp
+++ b/global/overlay/etc/puppet/manifests/cosmos-site.pp
@@ -257,6 +257,14 @@ node 'sto-tug-kvm-lab1.swamid.se' {
memory => '1024',
}
+ cosmos::dhcp_kvm { 'ca.sunet.se':
+ mac => '52:54:00:4a:45:01',
+ repo => 'git://git.nordu.net/sunet-ops.git',
+ tagpattern => 'sunet-ops',
+ cpus => '1',
+ memory => '1024',
+ }
+
cosmos::dhcp_kvm { 'meta.swamid.se':
mac => '52:54:00:1c:72:1a',
repo => 'git://git.nordu.net/sunet-ops.git',
@@ -518,6 +526,7 @@ class sunet-dhcp-hosts {
dhcp::host { 'meta.swamid': mac => "52:54:00:1c:72:1a", ip => "130.242.125.82" }
dhcp::host { 'md-master.reep': mac => "52:54:00:39:8d:ac", ip => "130.242.125.83" }
dhcp::host { 'lobo2.lab': mac => "52:54:00:5e:72:91", ip => "130.242.125.86" }
+ dhcp::host { 'ca': mac => "52:54:00:4a:45:01", ip => "130.242.125.87" }
# SUNET TUG eduID hosts (KVM host cdr1.sunet.se)
dhcp::host { 'backup-tug-3': mac => "52:54:00:f2:7d:54", ip => "130.242.125.84" }
@@ -527,6 +536,7 @@ class sunet-dhcp-hosts {
dhcp::host { 'registry.swamid': mac => "52:54:00:52:53:0b", ip => "130.242.125.90" }
dhcp::host { 'mdx1.swamid': mac => "52:54:00:fe:bc:09", ip => "130.242.125.91" }
dhcp::host { 'mdx2.swamid': mac => "52:54:00:30:be:dd", ip => "130.242.125.92" }
+
}
class sshaccess {
@@ -764,13 +774,30 @@ class fail2ban {
}
}
+define etcd_node(peers_file=undef,cluster_name="etcd") {
+ file { ["/data","/data/${cluster_name}","/data/${cluster_name}/${name}"]: ensure => 'directory' }
+ sunet::docker_run { 'etcd_${name}':
+ image => 'quay.io/coreos/etcd',
+ extra_parameters => ["-initial-advertise-peer-urls http://${::ipaddress_eth1}:8001",
+ "-listen-peer-urls http://${::ipaddress_eth1}:8001"
+ "-advertise-client-urls http://${::ipaddress_eth1}:5001",
+ "-listen-client-urls http://${::ipaddress_eth1}:5001",
+ "-name ${::hostname}",
+ "-data-dir /data/${cluster_name}/${name}",
+ "-initial-cluster-token ${cluster_name}",
+ "-peers-file ${peers_file}"],
+ ports => ["8001:8001","5001:5001"]
+
+
+ }
+}
+
class quantis {
apt::ppa {'ppa:ndn/quantispci': }
package {'quantispci-dkms': }
}
class webcommon {
- docker::image {'coreos/etcd': }
}
class webfrontend {