]> git.openstreetmap.org Git - chef.git/commitdiff
Add role for noomoahk
authorTom Hughes <tom@compton.nu>
Sat, 28 Jul 2018 12:47:45 +0000 (13:47 +0100)
committerTom Hughes <tom@compton.nu>
Sat, 28 Jul 2018 12:47:45 +0000 (13:47 +0100)
cookbooks/networking/templates/default/shorewall-zones.erb
roles/noomoahk.rb [new file with mode: 0644]
roles/tetaneutral.rb [new file with mode: 0644]

index 0759c0dd16529f89ab5a8e91571294be5a5b1289..7f9bd2c44d7eac71fa58893f5b812dc229de9d5c 100644 (file)
@@ -38,3 +38,4 @@ ixz:osm         <%= @type %>
 grn:osm         <%= @type %>
 g5s:osm         <%= @type %>
 na:osm          <%= @type %>
+thh:osm         <%= @type %>
diff --git a/roles/noomoahk.rb b/roles/noomoahk.rb
new file mode 100644 (file)
index 0000000..e761d80
--- /dev/null
@@ -0,0 +1,42 @@
+name "noomoahk"
+description "Master role applied to noomoahk"
+
+default_attributes(
+  :networking => {
+    :interfaces => {
+      :external_ipv4 => {
+        :interface => "ens3",
+        :role => :external,
+        :family => :inet,
+        :address => "91.224.148.166",
+        :prefix => "32",
+        :gateway => "89.234.156.230"
+      },
+      :external_ipv6 => {
+        :interface => "ens3",
+        :role => :external,
+        :family => :inet6,
+        :address => "2a03:7220:8080:a600::1",
+        :prefix => "56",
+        :gateway => "fe80::1"
+      }
+    }
+  },
+  :squid => {
+    :cache_mem => "6100 MB",
+    :cache_dir => "coss /store/squid/coss-01 80000 block-size=8192 max-size=262144 membufs=80"
+  },
+  :tilecache => {
+    :tile_parent => "toulouse.render.openstreetmap.org",
+    :tile_siblings => [
+      "nepomuk.openstreetmap.org",
+      "ladon.openstreetmap.org",
+      "culebre.openstreetmap.org"
+    ]
+  }
+)
+
+run_list(
+  "role[tetaneutral]",
+  "role[tilecache]"
+)
diff --git a/roles/tetaneutral.rb b/roles/tetaneutral.rb
new file mode 100644 (file)
index 0000000..1fc9bd0
--- /dev/null
@@ -0,0 +1,28 @@
+name "tetaneutral"
+description "Role applied to all servers at Tetaneutral.net"
+
+default_attributes(
+  :hosted_by => "Tetaneutral.net",
+  :location => "Toulouse, France",
+  :networking => {
+    :nameservers => [
+      "8.8.8.8",
+      "8.8.4.4"
+    ],
+    :roles => {
+      :external => {
+        :zone => "tnn"
+      }
+    }
+  }
+)
+
+override_attributes(
+  :ntp => {
+    :servers => ["0.fr.pool.ntp.org", "1.fr.pool.ntp.org", "europe.pool.ntp.org"]
+  }
+)
+
+run_list(
+  "role[fr]"
+)