From 07b622c6bba3bd5f0d1eb57d506b6d2057cb2213 Mon Sep 17 00:00:00 2001 From: Lv Jiawei Date: Tue, 26 Nov 2019 12:33:10 +0800 Subject: [PATCH] Add stateful set which hpa has supported (#17806) As https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough/ and https://github.com/kubernetes/website/pull/16425 say, the hpa has already supported stateful set. --- .../en/docs/tasks/run-application/horizontal-pod-autoscale.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tasks/run-application/horizontal-pod-autoscale.md b/content/en/docs/tasks/run-application/horizontal-pod-autoscale.md index 3320960d5b..e515206308 100644 --- a/content/en/docs/tasks/run-application/horizontal-pod-autoscale.md +++ b/content/en/docs/tasks/run-application/horizontal-pod-autoscale.md @@ -16,7 +16,7 @@ weight: 90 {{% capture overview %}} The Horizontal Pod Autoscaler automatically scales the number of pods -in a replication controller, deployment or replica set based on observed CPU utilization (or, with +in a replication controller, deployment, replica set or stateful set based on observed CPU utilization (or, with [custom metrics](https://git.k8s.io/community/contributors/design-proposals/instrumentation/custom-metrics-api.md) support, on some other application-provided metrics). Note that Horizontal Pod Autoscaling does not apply to objects that can't be scaled, for example, DaemonSets.