]> git.openstreetmap.org Git - chef.git/commitdiff
Add role for simurgh
authorTom Hughes <tom@compton.nu>
Thu, 19 Dec 2013 13:04:47 +0000 (13:04 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 19 Dec 2013 13:04:57 +0000 (13:04 +0000)
cookbooks/networking/templates/default/shorewall-zones.erb
roles/az.rb [new file with mode: 0644]
roles/delta.rb [new file with mode: 0644]
roles/simurgh.rb [new file with mode: 0644]

index 47e7ee0af78d4ae8acee3780ae05d6f747cea233..f9cf7b6db020124353b65ad47d89576732e5f0ed 100644 (file)
@@ -19,3 +19,4 @@ ly:osm                <%= @type %>
 ov:osm         <%= @type %>
 hz:osm         <%= @type %>
 bh:osm         <%= @type %>
+dt:osm         <%= @type %>
diff --git a/roles/az.rb b/roles/az.rb
new file mode 100644 (file)
index 0000000..037dcb4
--- /dev/null
@@ -0,0 +1,10 @@
+name "az"
+description "Role applied to all servers located in Azerbaijan"
+
+override_attributes(
+  :country => "az"
+)
+
+run_list(
+  "role[base]"
+)
diff --git a/roles/delta.rb b/roles/delta.rb
new file mode 100644 (file)
index 0000000..84c3600
--- /dev/null
@@ -0,0 +1,23 @@
+name "delta"
+description "Role applied to all servers at Delta Telecom"
+
+default_attributes(
+  :networking => {
+    :nameservers => [ "94.20.20.20", "8.8.8.8", "8.8.4.4" ],
+    :roles => {
+      :external => {
+        :zone => "dt"
+      }
+    }
+  }
+)
+
+override_attributes(
+  :ntp => {
+    :servers => [ "0.az.pool.ntp.org", "1.az.pool.ntp.org", "europe.pool.ntp.org" ]
+  }
+)
+
+run_list(
+  "role[az]"
+)
diff --git a/roles/simurgh.rb b/roles/simurgh.rb
new file mode 100644 (file)
index 0000000..acf9897
--- /dev/null
@@ -0,0 +1,29 @@
+name "simurgh"
+description "Master role applied to simurgh"
+
+default_attributes(
+  :networking => {
+    :interfaces => {
+      :external_ipv4 => {
+        :interface => "eth0",
+        :role => :external,
+        :family => :inet,
+        :address => "94.20.20.55",
+        :prefix => "24",
+        :gateway => "94.20.20.1"
+      }
+    }
+  },
+  :squid => {
+    :cache_mem => "6400 MB",
+    :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80"
+  },
+  :tilecache => {
+    :tile_parent => "baku.render.openstreetmap.org"
+  }
+)
+
+run_list(
+  "role[delta]",
+  "role[tilecache]"
+)