X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/98365f1da1424a74d5e1a562f0885608fadb88e7..a7d96c8358a00088b485fadb5966eb4b231d2ff1:/roles/ouroboros.rb diff --git a/roles/ouroboros.rb b/roles/ouroboros.rb new file mode 100644 index 000000000..4160db358 --- /dev/null +++ b/roles/ouroboros.rb @@ -0,0 +1,32 @@ +name "ouroboros" +description "Master role applied to ouroboros" + +default_attributes( + :networking => { + :interfaces => { + :internal_ipv4 => { + :interface => "eth0", + :role => :internal, + :family => :inet, + :address => "146.179.159.172" + }, + :external_ipv4 => { + :interface => "eth1", + :role => :external, + :family => :inet, + :address => "193.63.75.106" + }, + :external_ipv6 => { + :interface => "eth1", + :role => :external, + :family => :inet6, + :address => "2001:630:12:500:223:7dff:feea:813a" + } + } + } +) + +run_list( + "role[ic]", + "role[wiki-new]" +)