在OpenShift上创buildREDIS集群

我正在使用这个镜像,并在OpenShift上创build了两个REDIS部署。 部署名称是redis-node01redis-node02 。 我也创build了最小的REDIS集群configuration文件,如下所述。 它看起来像这样,它在REDIS启动时加载:

 port 7000 cluster-enabled yes cluster-config-file nodes.conf cluster-node-timeout 5000 appendonly yes 

现在我打开一个REDIS容器的terminal,并发出cluster meet命令,如下所述。 我得到这个错误:

 (error) ERR Invalid node address specified: redis-node02:6379 

我想REDIS不能联系那个地址上的另一个实例吗? 如何解决这个问题?