]> git.openstreetmap.org Git - chef.git/commitdiff
Add role for gorwen
authorTom Hughes <tom@compton.nu>
Mon, 16 Mar 2020 16:51:19 +0000 (16:51 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 16 Mar 2020 16:51:48 +0000 (16:51 +0000)
roles/co.rb [new file with mode: 0644]
roles/edgeuno.rb [new file with mode: 0644]
roles/gorwen.rb [new file with mode: 0644]

diff --git a/roles/co.rb b/roles/co.rb
new file mode 100644 (file)
index 0000000..123288a
--- /dev/null
@@ -0,0 +1,11 @@
+name "co"
+description "Role applied to all servers located in Colombia"
+
+override_attributes(
+  :country => "co",
+  :timezone => "America/Bogota"
+)
+
+run_list(
+  "role[base]"
+)
diff --git a/roles/edgeuno.rb b/roles/edgeuno.rb
new file mode 100644 (file)
index 0000000..d3416bb
--- /dev/null
@@ -0,0 +1,28 @@
+name "edgeuno"
+description "Role applied to all servers at Edgeuno"
+
+default_attributes(
+  :hosted_by => "EdgeUno",
+  :location => "Bogotá, Colombia",
+  :networking => {
+    :nameservers => [
+      "8.8.8.8",
+      "1.1.1.1"
+    ],
+    :roles => {
+      :external => {
+        :zone => "osm"
+      }
+    }
+  }
+)
+
+override_attributes(
+  :ntp => {
+    :servers => ["0.co.pool.ntp.org", "1.co.pool.ntp.org", "south-america.pool.ntp.org"]
+  }
+)
+
+run_list(
+  "role[co]"
+)
diff --git a/roles/gorwen.rb b/roles/gorwen.rb
new file mode 100644 (file)
index 0000000..20dc892
--- /dev/null
@@ -0,0 +1,53 @@
+name "gorwen"
+description "Master role applied to gorwen"
+
+default_attributes(
+  :hardware => {
+    :shm_size => "10g"
+  },
+  :networking => {
+    :interfaces => {
+      :external_ipv4 => {
+        :interface => "eth0",
+        :role => :external,
+        :family => :inet,
+        :address => "200.25.1.70",
+        :prefix => "28",
+        :gateway => "200.25.1.65"
+      },
+      :external_ipv6 => {
+        :interface => "eth0",
+        :role => :external,
+        :family => :inet6,
+        :address => "2800:1e0:a01:a006::6f",
+        :prefix => "125",
+        :gateway => "2800:1e0:a01:a006::69"
+      }
+    }
+  },
+  :squid => {
+    :version => 4,
+    :cache_mem => "6144 MB",
+    :cache_dir => [
+      "rock /store/squid/rock-4096 20000 swap-timeout=200 slot-size=4096 max-size=3996",
+      "rock /store/squid/rock-8192 25000 swap-timeout=200 slot-size=8192 min-size=3997 max-size=8092",
+      "rock /store/squid/rock-16384 35000 swap-timeout=200 slot-size=16384 min-size=8093 max-size=16284",
+      "rock /store/squid/rock-32768 45000 swap-timeout=200 slot-size=32768 min-size=16285 max-size=262144"
+    ]
+  },
+  :nginx => {
+    :cache => {
+      :proxy => {
+        :max_size => "8192M"
+      }
+    }
+  },
+  :tilecache => {
+    :tile_parent => "bogota.render.openstreetmap.org"
+  }
+)
+
+run_list(
+  "role[edgeuno]",
+  "role[tilecache]"
+)