statefulset.md (444B)
1 +++ 2 title = 'StatefulSet' 3 +++ 4 # StatefulSet 5 Alternative to Deployment for stateful application. 6 Manages set of pods created from same template, and desired number of replicas. 7 8 Unlike Deployment, StatefulSet ensures unique and easy way of identifying each pod, and creation of pods in specific order. 9 Contains also a PersistentVolumeClaim template. 10 11 Requires Headless Service - a Service where ClusterIP is None (so not handled by kube-proxy).