skip to main content
ice-reflector.json
This file should be supplied to the helm upgrade command with -f ice-reflector.json:
___MULTICAST___INTERFACE___ should be the network interface to be used for static reflector traffic.
{
"charts": {
"rallypoint": {
"values": {
"reflector": {
"config": {
"multicastInterfaceName": "___MULTICAST___INTERFACE___"
}
}
}
}
}
}
It is typical to set ___MULTICAST___INTERFACE___ to the default interface. On Ubuntu, it is usually ens160. You may verify the available interface(s) by running ip a, or find the default interface using route command:
sudo apt install net-tools -y
 
route | grep default | awk '{print $8}'
For cloud-native deployment, static reflector should be turned off. Please use the following ice-reflector.json instead:
{
"charts": {
"rallypoint": {
"values": {
"reflector": {
"enabled": false
}
}
}
}
}