]> git.openstreetmap.org Git - chef.git/commitdiff
Add role for firnen
authorTom Hughes <tom@compton.nu>
Sun, 25 Oct 2020 18:45:39 +0000 (18:45 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 25 Oct 2020 18:45:39 +0000 (18:45 +0000)
roles/epix.rb [new file with mode: 0644]
roles/firnen.rb [new file with mode: 0644]
roles/pl.rb [new file with mode: 0644]

diff --git a/roles/epix.rb b/roles/epix.rb
new file mode 100644 (file)
index 0000000..76b6de5
--- /dev/null
@@ -0,0 +1,17 @@
+name "epix"
+description "Role applied to all servers at EPIX"
+
+default_attributes(
+  :hosted_by => "EPIX",
+  :location => "Katowice, Poland"
+)
+
+override_attributes(
+  :ntp => {
+    :servers => ["0.pl.pool.ntp.org", "1.pl.pool.ntp.org", "europe.pool.ntp.org"]
+  }
+)
+
+run_list(
+  "role[pl]"
+)
diff --git a/roles/firnen.rb b/roles/firnen.rb
new file mode 100644 (file)
index 0000000..edd924e
--- /dev/null
@@ -0,0 +1,38 @@
+name "firnen"
+description "Master role applied to firnen"
+
+default_attributes(
+  :hardware => {
+    :shm_size => "36g"
+  },
+  :networking => {
+    :interfaces => {
+      :external_ipv4 => {
+        :interface => "enp6s0",
+        :role => :external,
+        :family => :inet,
+        :address => "188.241.28.82",
+        :prefix => "29",
+        :gateway => "188.241.28.81"
+      }
+    }
+  },
+  :squid => {
+    :version => 4,
+    :cache_mem => "32768 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 => "katowice.render.openstreetmap.org"
+  }
+)
+
+run_list(
+  "role[epix]",
+  "role[tilecache]"
+)
diff --git a/roles/pl.rb b/roles/pl.rb
new file mode 100644 (file)
index 0000000..ad8a61d
--- /dev/null
@@ -0,0 +1,11 @@
+name "pl"
+description "Role applied to all servers located in Poland"
+
+override_attributes(
+  :country => "pl",
+  :timezone => "Europe/Warsaw"
+)
+
+run_list(
+  "role[base]"
+)