]> git.openstreetmap.org Git - chef.git/blobdiff - roles/faffy.rb
Push external network config in Amsterdam down to the hosts
[chef.git] / roles / faffy.rb
index 4ab350da069528e0a9e07442473f50d0971fe401..4a21fae6100ea7ed1f2257d3259cf0b6a285374c 100644 (file)
@@ -4,59 +4,41 @@ description "Master role applied to faffy"
 default_attributes(
   :networking => {
     :interfaces => {
-      :internal_ipv4 => {
-        :interface => "eth0",
+      :internal => {
+        :interface => "bond0",
         :role => :internal,
-        :family => :inet,
-        :address => "10.0.0.7"
+        :inet => {
+          :address => "10.0.48.3"
+        },
+        :bond => {
+          :mode => "802.3ad",
+          :lacprate => "fast",
+          :xmithashpolicy => "layer3+4",
+          :slaves => %w[eno1 eno2 eno3 eno4 eno5 eno6]
+        }
       },
-      :external_ipv4 => {
-        :interface => "eth1",
+      :external => {
+        :interface => "bond0.2",
         :role => :external,
-        :family => :inet,
-        :address => "128.40.45.198"
-      }
-    }
-  },
-  :rsyncd => {
-    :modules => {
-      :agri_imagery => {
-        :comment => "AGRI Imagery Archive",
-        :path => "/mnt/md0/agri",
-        :read_only => true,
-        :write_only => false,
-        :list => true,
-        :uid => "nobody",
-        :gid => "nogroup",
-        :transfer_logging => false,
-        :exclude => [ ".*" ],
-        :max_connections => 10,
-        :ignore_errors => true,
-        :ignore_nonreadable => true,
-        :timeout => 3600,
-        :refuse_options => [ "checksum" ]
-      },
-      :agri_extra => {
-        :comment => "AGRI Extras Archive",
-        :path => "/var/www/agri.openstreetmap.org/download",
-        :read_only => true,
-        :write_only => false,
-        :list => true,
-        :uid => "nobody",
-        :gid => "nogroup",
-        :transfer_logging => false,
-        :exclude => [ ".*" ],
-        :max_connections => 10,
-        :ignore_errors => true,
-        :ignore_nonreadable => true,
-        :timeout => 3600,
-        :refuse_options => [ "checksum" ]
+        :inet => {
+          :address => "130.117.76.3",
+          :prefix => "27",
+          :gateway => "130.117.76.1"
+        },
+        :inet6 => {
+          :address => "2001:978:2:2c::172:3",
+          :prefix => "64",
+          :gateway => "2001:978:2:2c::172:1",
+          :routes => {
+            "2001:470:1:b3b::/64" => { :type => "unreachable" }
+          }
+        }
       }
     }
   }
 )
 
 run_list(
-  "role[ucl-wolfson]",
-  "recipe[rsyncd]"
+  "role[equinix-ams]",
+  "role[dev]"
 )