AmadeusITGroup / Redis-Operator

Redis Operator creates/configures/manages Redis clusters atop Kubernetes
MIT License
168 stars 62 forks source link

When creating RedisCluster by using charts the issue is that in Openshift Project in the Service section the ClusterIP is not assigning to the rediscluster service. #35

Open asadrao11 opened 5 years ago

clamoriniere1A commented 5 years ago

Hi,

The created Service is configure to not use the kubernetes loadbalancing service mechanism, that is why it doesn't have a ClusterIP. Each Redis-Cluster node didn't provide the same data (Redis slots) if it's a master or replication data (if slave/replica). For this reason the Service is configure with ClusterIP="none", You can still the kubernetes service DNS resolution to target one of the redis nodes with a Redis-Client (that supports redis-cluster); the client will discover the redis-cluster topology with the redis command CLUSTER NODES (https://redis.io/commands/cluster-nodes)

@asadrao11 let me know it answers your question/issue?