]> git.openstreetmap.org Git - chef.git/commitdiff
Add roles for nadder-01 and nadder-02
authorTom Hughes <tom@compton.nu>
Wed, 31 Jul 2013 16:25:24 +0000 (17:25 +0100)
committerTom Hughes <tom@compton.nu>
Wed, 31 Jul 2013 16:25:34 +0000 (17:25 +0100)
cookbooks/networking/templates/default/shorewall-zones.erb
roles/bluehost.rb [new file with mode: 0644]
roles/nadder-01.rb [new file with mode: 0644]
roles/nadder-02.rb [new file with mode: 0644]

index 0af666a46ee64f58566aeca8196f7900ec19c2ed..47e7ee0af78d4ae8acee3780ae05d6f747cea233 100644 (file)
@@ -18,3 +18,4 @@ pr:osm                <%= @type %>
 ly:osm         <%= @type %>
 ov:osm         <%= @type %>
 hz:osm         <%= @type %>
+bh:osm         <%= @type %>
diff --git a/roles/bluehost.rb b/roles/bluehost.rb
new file mode 100644 (file)
index 0000000..247fd05
--- /dev/null
@@ -0,0 +1,23 @@
+name "bluehost"
+description "Role applied to all servers at Bluehost"
+
+default_attributes(
+  :networking => {
+    :nameservers => [ "8.8.8.8", "8.8.4.4" ],
+    :roles => {
+      :external => {
+        :zone => "bh"
+      }
+    }
+  }
+)
+
+override_attributes(
+  :ntp => {
+    :servers => [ "0.us.pool.ntp.org", "1.us.pool.ntp.org", "north-america.pool.ntp.org" ]
+  }
+)
+
+run_list(
+  "role[us]"
+)
diff --git a/roles/nadder-01.rb b/roles/nadder-01.rb
new file mode 100644 (file)
index 0000000..62e23b6
--- /dev/null
@@ -0,0 +1,26 @@
+name "nadder-01"
+description "Master role applied to nadder-01"
+
+default_attributes(
+  :networking => {
+    :interfaces => {
+      :external_ipv4 => {
+        :interface => "eth0",
+        :role => :external,
+        :family => :inet,
+        :address => "192.163.219.36",
+        :prefix => "19",
+        :gateway => "192.163.192.1"
+      }
+    }
+  },
+  :squid => {
+    :cache_mem => "5500 MB",
+    :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80"
+  }
+)
+
+run_list(
+  "role[bluehost]",
+  "role[tilecache]"
+)
diff --git a/roles/nadder-02.rb b/roles/nadder-02.rb
new file mode 100644 (file)
index 0000000..606a399
--- /dev/null
@@ -0,0 +1,26 @@
+name "nadder-02"
+description "Master role applied to nadder-02"
+
+default_attributes(
+  :networking => {
+    :interfaces => {
+      :external_ipv4 => {
+        :interface => "eth0",
+        :role => :external,
+        :family => :inet,
+        :address => "192.163.219.40",
+        :prefix => "19",
+        :gateway => "192.163.192.1"
+      }
+    }
+  },
+  :squid => {
+    :cache_mem => "5500 MB",
+    :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80"
+  }
+)
+
+run_list(
+  "role[bluehost]",
+  "role[tilecache]"
+)