Hi,
It uses the default NetworkTransport implemented out of the box.
I am trying to understand how we can enable TLS on the transport used between the RAFT nodes, so that all heartbeat and data updates are done over a secure transport.
The NetworkTransport does discuss about TLS but it is not clear how it is achieved.
NetworkTransport provides a network based transport that can be used to communicate with Raft on remote machines. It requires an underlying stream layer to provide a stream abstraction, which can be simple TCP, TLS, etc.
Thanks,