]> git.openstreetmap.org Git - chef.git/commitdiff
Add role for saphira
authorTom Hughes <tom@compton.nu>
Tue, 25 Nov 2014 19:54:45 +0000 (19:54 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 25 Nov 2014 19:57:52 +0000 (19:57 +0000)
cookbooks/networking/templates/default/shorewall-zones.erb
roles/jump.rb [new file with mode: 0644]
roles/saphira.rb [new file with mode: 0644]

index ab5ba74287df92af00794bab6570d6487c396677..88c2db4002f2f8e0112f4263aaec8d5996b53b2c 100644 (file)
@@ -23,3 +23,4 @@ dt:osm                <%= @type %>
 nc:osm         <%= @type %>
 ool:osm                <%= @type %>
 cnt:osm                <%= @type %>
+jn:osm         <%= @type %>
diff --git a/roles/jump.rb b/roles/jump.rb
new file mode 100644 (file)
index 0000000..ec967bb
--- /dev/null
@@ -0,0 +1,28 @@
+name "jump"
+description "Role applied to all servers at Jump Networks"
+
+default_attributes(
+  :networking => {
+    :nameservers => [
+      "185.73.44.3",
+      "2001:ba8:0:2c02::",
+      "2001:ba8:0:2c03::",
+      "2001:ba8:0:2c04::"
+    ],
+    :roles => {
+      :external => {
+        :zone => "jn"
+      }
+    }
+  }
+)
+
+override_attributes(
+  :ntp => {
+    :servers => [ "0.uk.pool.ntp.org", "1.uk.pool.ntp.org", "europe.pool.ntp.org" ]
+  }
+)
+
+run_list(
+  "role[gb]"
+)
diff --git a/roles/saphira.rb b/roles/saphira.rb
new file mode 100644 (file)
index 0000000..b05bcba
--- /dev/null
@@ -0,0 +1,44 @@
+name "saphira"
+description "Master role applied to saphira"
+
+default_attributes(
+  :networking => {
+    :interfaces => {
+      :external_ipv4 => {
+        :interface => "eth0",
+        :role => :external,
+        :family => :inet,
+        :address => "185.73.44.30",
+        :prefix => "22",
+        :gateway => "185.73.44.1"
+      },
+      :external_ipv6 => {
+        :interface => "eth0",
+        :role => :external,
+        :family => :inet6,
+        :address => "2001:ba8:0:2c1e::",
+        :prefix => "64",
+        :gateway => "fe80::fcff:ffff:feff:ffff"
+      }
+    }
+  },
+  :squid => {
+    :cache_mem => "7500 MB",
+    :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80"
+  },
+  :tilecache => {
+    :tile_parent => "london.render.openstreetmap.org",
+    :tile_siblings => [
+      "trogdor.openstreetmap.org",
+      "tabaluga.openstreetmap.org",
+      "ridgeback.openstreetmap.org",
+      "fume.openstreetmap.org",
+      "gorynych.openstreetmap.org"
+    ]
+  }
+)
+
+run_list(
+  "role[jump]",
+  "role[tilecache]"
+)