X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/4f581378f4dfdd9cb5a357b6324985d1d53f9663..d58e1264bfe904a9f5ec6ac605ef2eb2ee867505:/roles/horntail.rb
diff --git a/roles/horntail.rb b/roles/horntail.rb
index a7a4cc783..afaf9460d 100644
--- a/roles/horntail.rb
+++ b/roles/horntail.rb
@@ -4,11 +4,12 @@ description "Master role applied to horntail"
default_attributes(
:networking => {
:interfaces => {
- :internal_ipv4 => {
+ :internal => {
:interface => "bond0",
:role => :internal,
- :family => :inet,
- :address => "10.0.64.10",
+ :inet => {
+ :address => "10.0.64.10"
+ },
:bond => {
:mode => "802.3ad",
:lacprate => "fast",
@@ -16,17 +17,15 @@ default_attributes(
:slaves => %w[enp25s0f0 enp25s0f1]
}
},
- :external_ipv4 => {
+ :external => {
:interface => "bond0.101",
:role => :external,
- :family => :inet,
- :address => "184.104.226.106"
- },
- :external_ipv6 => {
- :interface => "bond0.101",
- :role => :external,
- :family => :inet6,
- :address => "2001:470:1:b3b::a"
+ :inet => {
+ :address => "184.104.226.106"
+ },
+ :inet6 => {
+ :address => "2001:470:1:b3b::a"
+ }
}
}
}
@@ -34,5 +33,6 @@ default_attributes(
run_list(
"role[equinix-dub]",
+ "role[geodns]",
"role[planet]"
)