Hi we are deploying temporal, we managed to get it up and running with single replicas but when we specify multiple replicas and a broadcastAddress= “{POD_IP}” we get an error from the ringpop library saying malformed param ‘broadcastAddress’
1 Like
malformed param ‘broadcastAddress’
means that IP address is not valid. I guess {POD_IP}
wasn’t substituted with IP address and used as is. Where do you specify this? Our helm char specify it as:
broadcastAddress: {{ `{{ default .Env.POD_IP "0.0.0.0" }}` }}
I can’t find anything with =
sign in our configs.
Ignore this I had made a typo in the config, sorry for the confusion