]> git.openstreetmap.org Git - chef.git/commitdiff
Restore role for kokosnuss
authorTom Hughes <tom@compton.nu>
Sat, 21 Nov 2020 00:47:07 +0000 (00:47 +0000)
committerTom Hughes <tom@compton.nu>
Sat, 21 Nov 2020 00:47:07 +0000 (00:47 +0000)
roles/kokosnuss.rb [new file with mode: 0644]
roles/strato.rb [new file with mode: 0644]

diff --git a/roles/kokosnuss.rb b/roles/kokosnuss.rb
new file mode 100644 (file)
index 0000000..cebe596
--- /dev/null
@@ -0,0 +1,41 @@
+name "kokosnuss"
+description "Master role applied to kokosnuss"
+
+default_attributes(
+  :hardware => {
+    :shm_size => "12g"
+  },
+  :networking => {
+    :interfaces => {
+      :external_ipv4 => {
+        :interface => "venet0",
+        :role => :external,
+        :family => :inet,
+        :address => "85.214.255.86",
+        :prefix => "32",
+        :gateway => "85.214.255.86"
+      }
+    },
+    :wireguard => {
+      :enabled => false
+    }
+  },
+  :squid => {
+    :version => 4,
+    :cache_mem => "8192 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 => "germany.render.openstreetmap.org"
+  }
+)
+
+run_list(
+  "role[strato]",
+  "role[tilecache]"
+)
diff --git a/roles/strato.rb b/roles/strato.rb
new file mode 100644 (file)
index 0000000..5cf4445
--- /dev/null
@@ -0,0 +1,20 @@
+name "strato"
+description "Role applied to all servers at Strato"
+
+default_attributes(
+  :hosted_by => "Strato",
+  :location => "Germany"
+)
+
+override_attributes(
+  :networking => {
+    :nameservers => ["85.214.7.22", "81.169.163.106"]
+  },
+  :ntp => {
+    :servers => ["0.de.pool.ntp.org", "1.de.pool.ntp.org", "europe.pool.ntp.org"]
+  }
+)
+
+run_list(
+  "role[de]"
+)