]> git.openstreetmap.org Git - chef.git/commitdiff
Create gackelchen, gandi and lu roles
authorGuillaume RISCHARD <git@stereo.lu>
Mon, 6 Apr 2020 18:27:31 +0000 (19:27 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 6 Apr 2020 18:27:31 +0000 (19:27 +0100)
Closes #293

roles/gackelchen.rb [new file with mode: 0644]
roles/gandi.rb [new file with mode: 0644]
roles/lu.rb [new file with mode: 0644]

diff --git a/roles/gackelchen.rb b/roles/gackelchen.rb
new file mode 100644 (file)
index 0000000..c2a2104
--- /dev/null
@@ -0,0 +1,46 @@
+name "gackelchen"
+description "Master role applied to gackelchen"
+
+default_attributes(
+  :hardware => {
+    :shm_size => "24g"
+  },
+  :networking => {
+    :interfaces => {
+      :external_ipv4 => {
+        :interface => "eth0",
+        :role => :external,
+        :family => :inet,
+        :address => "46.226.108.71",
+        :prefix => "22",
+        :gateway => "46.226.111.254",
+      },
+      :external_ipv6 => {
+        :interface => "eth0",
+        :role => :external,
+        :family => :inet6,
+        :address => "2001:4b98:dc2:41:216:3eff:fe62:924c",
+        :prefix => "64",
+        :gateway => "fe80::1"
+      }
+    }
+  },
+  :squid => {
+    :version => 4,
+    :cache_mem => "20480 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"
+    ]
+  },
+  :tilecache => {
+    :tile_parent => "bissen.render.openstreetmap.org"
+  }
+)
+
+run_list(
+  "role[gandi]",
+  "role[tilecache]"
+)
diff --git a/roles/gandi.rb b/roles/gandi.rb
new file mode 100644 (file)
index 0000000..6868a7c
--- /dev/null
@@ -0,0 +1,29 @@
+name "gandi"
+description "Role applied to all servers at Gandi"
+
+default_attributes(
+  :hosted_by => "Gandi",
+  :location => "Bissen, Luxembourg",
+  :networking => {
+    :nameservers => [
+      "217.70.186.194",
+      "217.70.186.193",
+      "2001:4b98:dc2:49::193"
+    ],
+    :roles => {
+      :external => {
+        :zone => "osm"
+      }
+    }
+  }
+)
+
+override_attributes(
+  :ntp => {
+    :servers => ["0.lu.pool.ntp.org", "1.lu.pool.ntp.org", "europe.pool.ntp.org"]
+  }
+)
+
+run_list(
+  "role[lu]"
+)
diff --git a/roles/lu.rb b/roles/lu.rb
new file mode 100644 (file)
index 0000000..dd381e5
--- /dev/null
@@ -0,0 +1,11 @@
+name "lu"
+description "Role applied to all servers located in Luxembourg"
+
+override_attributes(
+  :country => "lu",
+  :timezone => "Europe/Luxembourg"
+)
+
+run_list(
+  "role[base]"
+)