in src/it/java/com/epam/digital/data/platform/usrtaskmgt/config/EmbeddedRedisConfig.java [40:51]
public void postConstruct() {
var hostAndPort = HostAndPort.fromString(nodes);
redisCluster = RedisCluster.builder()
.sentinelPorts(List.of(hostAndPort.getPort()))
.sentinelCount(1)
.quorumSize(1)
.ephemeralServers()
.replicationGroup(master, 1)
.build();
redisCluster.start();
}