Drop old information about StatefulSet stability (#16060)
(at time of commit, v1.11 was the oldest version supported)
This commit is contained in:
parent
7382e352df
commit
876802d59a
|
@ -15,10 +15,6 @@ weight: 40
|
||||||
|
|
||||||
StatefulSet is the workload API object used to manage stateful applications.
|
StatefulSet is the workload API object used to manage stateful applications.
|
||||||
|
|
||||||
{{< note >}}
|
|
||||||
StatefulSets are stable (GA) in 1.9.
|
|
||||||
{{< /note >}}
|
|
||||||
|
|
||||||
{{< glossary_definition term_id="statefulset" length="all" >}}
|
{{< glossary_definition term_id="statefulset" length="all" >}}
|
||||||
{{% /capture %}}
|
{{% /capture %}}
|
||||||
|
|
||||||
|
@ -43,7 +39,6 @@ provides a set of stateless replicas. Controllers such as
|
||||||
|
|
||||||
## Limitations
|
## Limitations
|
||||||
|
|
||||||
* StatefulSet was a beta resource prior to 1.9 and not available in any Kubernetes release prior to 1.5.
|
|
||||||
* The storage for a given Pod must either be provisioned by a [PersistentVolume Provisioner](https://github.com/kubernetes/examples/tree/{{< param "githubbranch" >}}/staging/persistent-volume-provisioning/README.md) based on the requested `storage class`, or pre-provisioned by an admin.
|
* The storage for a given Pod must either be provisioned by a [PersistentVolume Provisioner](https://github.com/kubernetes/examples/tree/{{< param "githubbranch" >}}/staging/persistent-volume-provisioning/README.md) based on the requested `storage class`, or pre-provisioned by an admin.
|
||||||
* Deleting and/or scaling a StatefulSet down will *not* delete the volumes associated with the StatefulSet. This is done to ensure data safety, which is generally more valuable than an automatic purge of all related StatefulSet resources.
|
* Deleting and/or scaling a StatefulSet down will *not* delete the volumes associated with the StatefulSet. This is done to ensure data safety, which is generally more valuable than an automatic purge of all related StatefulSet resources.
|
||||||
* StatefulSets currently require a [Headless Service](/docs/concepts/services-networking/service/#headless-services) to be responsible for the network identity of the Pods. You are responsible for creating this Service.
|
* StatefulSets currently require a [Headless Service](/docs/concepts/services-networking/service/#headless-services) to be responsible for the network identity of the Pods. You are responsible for creating this Service.
|
||||||
|
|
Loading…
Reference in New Issue