Kubernetes StatefulSet: Difference between revisions
Jump to navigation
Jump to search
(23 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
=External= | =External= | ||
* https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/ | * https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/ | ||
=Internal= | =Internal= | ||
* [[Kubernetes | * [[Kubernetes Workload Resources#StatefulSet|Kubernetes Workload Resources]] | ||
* [[Kubernetes API Resources Concepts#StatefulSet |API Resources Concepts]] | * [[Kubernetes API Resources Concepts#StatefulSet |API Resources Concepts]] | ||
=Overview= | =Overview= | ||
StatefulSet is the workload API object used to manage stateful applications. | |||
=StatefulSet | <font color=darkkhaki>State and identity (name, hostname). It is not guaranteed the same IP address, but the name is constant. The state a StatefuSet pod holds is relevant, we need to be able to get to it, based on a name.</font> | ||
{{Internal|Kubernetes StatefulSet | |||
=Scaling= | |||
A StatefulSet has a Scale sub-resource, allowing it to be controlled by a [[Kubernetes Horizontal Pod Autoscaler#Overview|horizontal pod autoscaler]]. | |||
=StatefulSet and DNS= | |||
{{External|https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#stable-network-id}} | |||
=TODO= | |||
{{Internal|Kubernetes StatefulSet TODEPLETE|Kubernetes StatefulSet TODEPLETE}} |
Latest revision as of 20:15, 13 July 2023
External
Internal
Overview
StatefulSet is the workload API object used to manage stateful applications.
State and identity (name, hostname). It is not guaranteed the same IP address, but the name is constant. The state a StatefuSet pod holds is relevant, we need to be able to get to it, based on a name.
Scaling
A StatefulSet has a Scale sub-resource, allowing it to be controlled by a horizontal pod autoscaler.