itamae/cookbooks/consul/attributes.rb

27 lines
1007 B
Ruby
Raw Normal View History

2019-03-03 08:50:49 +00:00
# -------------------------------------------
# Specifying the default settings:
# -------------------------------------------
case run_command('grep VERSION_ID /etc/os-release | awk -F\" \'{print $2}\'').stdout.chomp
2022-07-10 05:29:24 +00:00
when "20.04", "22.04"
cmd = 'LANG=C ip a | grep "inet " | grep -v -E "(127|172)" | cut -d" " -f6 | perl -pe "s/\/.+//g"'
2019-03-03 08:50:49 +00:00
when "18.04"
cmd = 'LANG=C /sbin/ifconfig | grep "inet " | grep -v -E "(127|172)" | cut -d" " -f10'
2019-03-03 08:50:49 +00:00
else
cmd = 'LANG=C /sbin/ifconfig | grep "inet addr" | grep -v -E "(127|172)" | awk "{print $2;}" | cut -d: -f2 | cut -f 1 -d " " | tail -1'
2019-03-03 08:50:49 +00:00
end
ipaddr = run_command(cmd).stdout.chomp
cmd = 'grep nameserver /run/systemd/resolve/resolv.conf | grep -v 8.8.8.8 | grep -v 127.0.0.1 | perl -pe "s/nameserver //g" | perl -pe "s/\n/ /g"'
dns = run_command(cmd).stdout.chomp
2019-03-03 08:50:49 +00:00
node.reverse_merge!({
'consul' => {
2020-11-22 08:25:09 +00:00
'manager' => false,
'manager_hosts' => '["192.168.10.101", "192.168.10.251", "192.168.10.252"]',
'ipaddr' => ipaddr,
'dns' => dns
2019-03-03 08:50:49 +00:00
}
})