]> git.openstreetmap.org Git - chef.git/commitdiff
Add role for angor
authorTom Hughes <tom@compton.nu>
Wed, 29 Mar 2017 17:56:23 +0000 (18:56 +0100)
committerTom Hughes <tom@compton.nu>
Wed, 29 Mar 2017 18:03:00 +0000 (19:03 +0100)
cookbooks/networking/templates/default/shorewall-zones.erb
roles/angor.rb [new file with mode: 0644]
roles/inxza.rb [new file with mode: 0644]
roles/za.rb [new file with mode: 0644]

index d1875b5994c898b8b0a439b5ecff61b26decb28e..629ad010057d7f9411cc56a304ec48dc560da55b 100644 (file)
@@ -33,3 +33,4 @@ ds:osm                <%= @type %>
 uz:osm          <%= @type %>
 ovh:osm         <%= @type %>
 ffr:osm         <%= @type %>
+ixz:osm         <%= @type %>
diff --git a/roles/angor.rb b/roles/angor.rb
new file mode 100644 (file)
index 0000000..34af680
--- /dev/null
@@ -0,0 +1,43 @@
+name "angor"
+description "Master role applied to angor"
+
+default_attributes(
+  :networking => {
+    :interfaces => {
+      :external_ipv4 => {
+        :interface => "eno1",
+        :role => :external,
+        :family => :inet,
+        :address => "196.10.54.165",
+        :prefix => "29",
+        :gateway => "196.10.54.161"
+      },
+      :external_ipv6 => {
+        :interface => "eno1",
+        :role => :external,
+        :family => :inet6,
+        :address => "2001:43f8:1f4:b00:b283:feff:fed8:dd45",
+        :prefix => "64"
+      }
+    }
+  },
+  :squid => {
+    :cache_mem => "6100 MB",
+    :cache_dir => "coss /store/squid/coss-01 80000 block-size=8192 max-size=262144 membufs=80"
+  },
+  :tilecache => {
+    :tile_parent => "london.render.openstreetmap.org",
+    :tile_siblings => [
+      "trogdor.openstreetmap.org",
+      "katie.openstreetmap.org",
+      "konqi.openstreetmap.org",
+      "ridgeback.openstreetmap.org",
+      "gorynych.openstreetmap.org"
+    ]
+  }
+)
+
+run_list(
+  "role[inxza]",
+  "role[tilecache]"
+)
diff --git a/roles/inxza.rb b/roles/inxza.rb
new file mode 100644 (file)
index 0000000..520dbb6
--- /dev/null
@@ -0,0 +1,29 @@
+name "inxza"
+description "Role applied to all servers at INX-ZA"
+
+default_attributes(
+  :hosted_by => "INX-ZA",
+  :location => "South Africa",
+  :networking => {
+    :nameservers => [
+      "196.10.52.52",
+      "196.10.54.54",
+      "196.10.55.55"
+    ],
+    :roles => {
+      :external => {
+        :zone => "ixz"
+      }
+    }
+  }
+)
+
+override_attributes(
+  :ntp => {
+    :servers => ["0.za.pool.ntp.org", "1.za.pool.ntp.org", "africa.pool.ntp.org"]
+  }
+)
+
+run_list(
+  "role[za]"
+)
diff --git a/roles/za.rb b/roles/za.rb
new file mode 100644 (file)
index 0000000..f42d366
--- /dev/null
@@ -0,0 +1,10 @@
+name "za"
+description "Role applied to all servers located in South Africa"
+
+override_attributes(
+  :country => "za"
+)
+
+run_list(
+  "role[base]"
+)