description "Master role applied to norbert"
default_attributes(
- :accounts => {
- :users => {
- :yellowbkpk => { :status => :administrator },
- :pnorman => { :status => :user }
- }
- },
- :exim => {
- :aliases => {
- :root => "yellowbkpk"
- }
- },
:networking => {
:interfaces => {
- :internal_ipv4 => {
- :interface => "eth0",
+ :internal => {
+ :interface => "bond0",
:role => :internal,
- :family => :inet,
- :address => "10.0.0.5"
+ :inet => {
+ :address => "10.0.48.17"
+ },
+ :bond => {
+ :mode => "802.3ad",
+ :lacprate => "fast",
+ :xmithashpolicy => "layer3+4",
+ :slaves => %w[enp25s0f0 enp25s0f1]
+ }
+ },
+ :external_cogent => {
+ :interface => "bond0.2",
+ :role => :external,
+ :metric => 150,
+ :source_route_table => 100,
+ :inet => {
+ :address => "130.117.76.17",
+ :prefix => "27",
+ :gateway => "130.117.76.1"
+ },
+ :inet6 => {
+ :address => "2001:978:2:2c::172:11",
+ :prefix => "64",
+ :gateway => "2001:978:2:2c::172:1",
+ :routes => {
+ "2001:470:1:b3b::/64" => { :type => "unreachable" }
+ }
+ }
+ },
+ :external => {
+ :interface => "bond0.3",
+ :role => :external,
+ :source_route_table => 150,
+ :inet => {
+ :address => "184.104.179.145",
+ :prefix => "27",
+ :gateway => "184.104.179.129"
+ },
+ :inet6 => {
+ :address => "2001:470:1:fa1::11",
+ :prefix => "64",
+ :gateway => "2001:470:1:fa1::1"
+ }
}
}
},
- :sysfs => {
- :hdd_tune => {
- :comment => "Tune the queue for improved performance",
- :parameters => {
- "block/cciss\!c0d0/queue/nr_requests" => "512",
- "block/cciss\!c0d1/queue/nr_requests" => "512",
- "block/cciss\!c0d0/queue/scheduler" => "noop",
- "block/cciss\!c0d1/queue/scheduler" => "noop",
- "block/sda/queue/nr_requests" => "512",
- "block/sda/queue/scheduler" => "deadline"
- }
- }
+ :planet => {
+ :replication => "enabled"
}
)
run_list(
- "role[ucl-internal]"
+ "role[equinix-ams]",
+ "role[geodns]",
+ "role[backup]",
+ "role[planet]",
+ "role[planetdump]",
+ "recipe[tilelog]"
)