Kubernetes Patterns : The Stateful Service Pattern

ahmedat71538826

Ahmed Atef

Posted on October 16, 2019

Kubernetes Patterns : The Stateful Service Pattern

When I first learned about StatefulSets, I always wondered: why to bother creating (and using) a new controller? Why not just use a ReplicaSet or a Deployment (which uses ReplicaSets internally) to serve our stateful app? Let’s assume that you need to run a MySQL database inside your Kubernetes cluster. The database needs to run only on one instance (provided that you are not using a MySQL cluster) that serves as the data store. You can create a ReplicaSet and set the number of replicas to 1. The Pod template would have one container running the MySQL image, and a Persistent Volume Claim that points to a Persistent Volume that was provisioned firsthand. You’d also create a Service that leads to the Pod and provides a DNS name for your MySQL database.
Learn more about best practices for Stateful Pattern: https://www.magalix.com/blog/kubernetes-patterns-the-stateful-service-pattern

💖 💪 🙅 🚩
ahmedat71538826
Ahmed Atef

Posted on October 16, 2019

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related