Hi,
Quick Q.
How do i parse elasticsearch variables into the YML?
I need to put the IP for network.host dynamically for spawned slaves and ive set an environment variable like:
ip="$(ifconfig | grep -A 1 'eth0' | tail -1 | cut -d ':' -f 2 | cut -d ' ' -f 1)"
Which returns just the IP address of Eth0 from my VM
And in the .yml File i've tried to allocate it to
network.host ${ip}
Yet this is not working. However, in node.name $(HOSTNAME} variable works?
I also need to set it for the cluster_name also so any insight will really help.
Thanks,
Michel