Kubernetes StatefulSet: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=External= * https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/ StatefulSets =Internal= * Kubernetes Higher Level Pod Controllers#StatefulSet|Kubernetes...") |
|||
Line 7: | Line 7: | ||
=Overview= | =Overview= | ||
Used for stateful application components, where the application component relies on access to "stable" file storage to maintain state between restarts. | Used for stateful application components, where the application component relies on access to "stable" file storage to maintain state between restarts. A StatefulSet and the individual pods the StatefulSet manages are registered with the [[Kubernetes_Networking_Concepts#The_DNS_Service|cluster's DNS service]]. | ||
=StatefulSet Manifest= | |||
{{Internal|Kubernetes StatefulSet Manifest|StatefulSet Manifest}} |
Revision as of 16:51, 11 December 2019
External
Internal
Overview
Used for stateful application components, where the application component relies on access to "stable" file storage to maintain state between restarts. A StatefulSet and the individual pods the StatefulSet manages are registered with the cluster's DNS service.