...

/

Introduction to StatefulSets

Introduction to StatefulSets

Get an overview of StatefulSets in Kubernetes.

We'll cover the following...

In this chapter, we'll learn how to use StatefulSets to deploy and manage stateful applications on Kubernetes.

For the purposes of this chapter, we define a stateful application as one that creates and saves valuable data. Examples include databases, key-value stores, and applications that save data about client sessions and use it for future sessions.

StatefulSet theory

It’s helpful to compare StatefulSets with Deployments. Both are resources in the Kubernetes API and ...