ice-archiver.json
To enable Recording Archiver, supply this file to the helm upgrade command with -f ice-archiver.json:
{
"charts": {
"rallypoint": {
"values": {
"archiver": {
"enabled": true
}
}
}
}
}
If the cluster is not using https (i.e., https.json is not used), and the cluster is behind a firewall, then the public-facing IP address of the cluster must be defined:
{
"charts": {
"rallypoint": {
"values": {
"archiver": {
"enabled": true,
"config": {
"recordingURL": "http://___PUBLIC___FACING___CLUSTER___IP___"
}
}
}
}
}
}
Note: The ___PUBLIC___FACING___CLUSTER___IP___ defaults to the cluster node's IP address, if https is not used and ___PUBLIC___FACING___CLUSTER___IP___ is not provided in ice-archiver.json.