]> git.openstreetmap.org Git - chef.git/commitdiff
Add role for katie
authorTom Hughes <tom@compton.nu>
Tue, 20 Jan 2015 22:27:16 +0000 (22:27 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 20 Jan 2015 22:27:16 +0000 (22:27 +0000)
roles/katie.rb [new file with mode: 0644]

diff --git a/roles/katie.rb b/roles/katie.rb
new file mode 100644 (file)
index 0000000..763365c
--- /dev/null
@@ -0,0 +1,45 @@
+name "katie"
+description "Master role applied to katie"
+
+default_attributes(
+  :networking => {
+    :interfaces => {
+      :external_ipv4 => {
+        :interface => "eth0",
+        :role => :external,
+        :family => :inet,
+        :address => "144.76.70.77",
+        :prefix => "27",
+        :gateway => "144.76.70.65"
+      },
+      :external_ipv6 => {
+        :interface => "eth0",
+        :role => :external,
+        :family => :inet6,
+        :address => "2a01:4f8:191:834c::2",
+        :prefix => "64",
+        :gateway => "fe80::1"
+      }
+    }
+  },
+  :squid => {
+    :cache_mem => "12500 MB",
+    :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80"
+  },
+  :tilecache => {
+    :tile_parent => "falkenstein.render.openstreetmap.org",
+    :tile_siblings => [
+       "trogdor.openstreetmap.org",
+       "nepomuk.openstreetmap.org",
+       "ridgeback.openstreetmap.org",
+       "fume.openstreetmap.org",
+       "gorynych.openstreetmap.org",
+       "simurgh.openstreetmap.org"
+    ]
+  }
+)
+
+run_list(
+  "role[hetzner]",
+  "role[tilecache]"
+)