what approach I should use for external access to Cassandra running inside kubernetes

7/21/2017

I have a StatefulSet Cassandra deployment that works great for services deployed to Kubernetes with namespace access, but I also have an ETL job that runs in EMR and needs to load data into that Cassandra cluster.

What would be the main approach/Kubernetes way of doing this?

-- Bill Warner
cassandra
emr
kubernetes

1 Answer

7/22/2017

I can think of two options.

Simple one is you can create the server with Type: NodePort, with this you can connect server with Node IP Address:PortNumber.

Second option is you can create the Ingress Load Balancer and connect to Cassandra cluster.

-- sfgroups
Source: StackOverflow