Bill Warner
Bill Warner

Reputation: 649

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

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?

Upvotes: 0

Views: 284

Answers (1)

sfgroups
sfgroups

Reputation: 19133

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.

Upvotes: 1

Related Questions