]> git.openstreetmap.org Git - chef.git/commitdiff
Add role for vipertooth
authorTom Hughes <tom@compton.nu>
Wed, 20 Feb 2019 15:48:29 +0000 (15:48 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 20 Feb 2019 15:52:57 +0000 (15:52 +0000)
roles/cmok.rb
roles/ua.rb [new file with mode: 0644]
roles/utelecom.rb [new file with mode: 0644]
roles/vipertooth.rb [new file with mode: 0644]

index a876d8604a7f10a4378a981ce9984218794a9a27..f348894fef7a3f6dafb3ea8a3ca70b8039aa61bf 100644 (file)
@@ -29,6 +29,7 @@ default_attributes(
   :tilecache => {
     :tile_parent => "minsk.render.openstreetmap.org",
     :tile_siblings => [
+      "vipertooth.openstreetmap.org",
       "katie.openstreetmap.org",
       "konqi.openstreetmap.org",
       "ridgeback.openstreetmap.org",
diff --git a/roles/ua.rb b/roles/ua.rb
new file mode 100644 (file)
index 0000000..48674f9
--- /dev/null
@@ -0,0 +1,10 @@
+name "ua"
+description "Role applied to all servers located in Ukraine"
+
+override_attributes(
+  :country => "ua"
+)
+
+run_list(
+  "role[base]"
+)
diff --git a/roles/utelecom.rb b/roles/utelecom.rb
new file mode 100644 (file)
index 0000000..d4aca4c
--- /dev/null
@@ -0,0 +1,25 @@
+name "utelecom"
+description "Role applied to all servers at Ukrainian Telecommunication Group"
+
+default_attributes(
+  :hosted_by => "Ukrainian Telecommunication Group",
+  :location => "Kiev, Ukraine",
+  :networking => {
+    :nameservers => ["8.8.8.8", "8.8.4.4"],
+    :roles => {
+      :external => {
+        :zone => "osm"
+      }
+    }
+  }
+)
+
+override_attributes(
+  :ntp => {
+    :servers => ["0.ua.pool.ntp.org", "1.ua.pool.ntp.org", "europe.pool.ntp.org"]
+  }
+)
+
+run_list(
+  "role[ua]"
+)
diff --git a/roles/vipertooth.rb b/roles/vipertooth.rb
new file mode 100644 (file)
index 0000000..a0f4d4c
--- /dev/null
@@ -0,0 +1,44 @@
+name "vipertooth"
+description "Master role applied to vipertooth"
+
+default_attributes(
+  :location => "Kiev, Ukraine",
+  :networking => {
+    :interfaces => {
+      :external_ipv4 => {
+        :interface => "eth0",
+        :role => :external,
+        :family => :inet,
+        :address => "176.122.99.101",
+        :prefix => "26",
+        :gateway => "176.122.99.126"
+      },
+      :external_ipv6 => {
+        :interface => "eth0",
+        :role => :external,
+        :family => :inet6,
+        :address => "2001:67c:2d40::65",
+        :prefix => "64",
+        :gateway => "2001:67c:2d40::fffe"
+      }
+    }
+  },
+  :squid => {
+    :cache_mem => "16000 MB",
+    :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80"
+  },
+  :tilecache => {
+    :tile_parent => "kiev.render.openstreetmap.org",
+    :tile_siblings => [
+      "cmok.openstreetmap.org",
+      "sarkany.openstreetmap.org",
+      "kalessin.openstreetmap.org",
+      "konqi.openstreetmap.org"
+    ]
+  }
+)
+
+run_list(
+  "role[utelecom]",
+  "role[tilecache]"
+)