Closed Leo791 closed 2 months ago
And also in the entrypoint for redis I think the TLS setup is not right either:
if [[ "${SETUP_MODE}" == "cluster" ]]; then
{
echo tls-replication yes
echo tls-cluster yes
} >> /etc/redis/redis.conf
The tls-replication yes should be in an else I believe.
Thank you for pointing it out. The first issue has been fixed by #81
Thank you for pointing it out. The first issue has been fixed by #81
Thank you, do you know when a new image will be issued with this fix?
Thank you, do you know when a new image will be issued with this fix?
Sorry, I'm not sure about the exact time.
You can try the latest v6.2.14 v7.0.15 @Leo791
I noticed that the port setup for sentinel is being done like so:
And the port and tls_port are being defined in the tls_setup() function.
However, since port_setup runs after tls_setup I think the port=0 definition from tls_setup is being overriden by port setup.