Skip to content

Commit 02b9c7b

Browse files
authored
Merge pull request #23899 from varadaprasanth/patch-3
Pod Object is modified as per standards
2 parents c1dfb7b + 19d46f7 commit 02b9c7b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/en/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ weight: 100
1111

1212
<!-- overview -->
1313

14-
Horizontal Pod Autoscaler automatically scales the number of pods
14+
Horizontal Pod Autoscaler automatically scales the number of Pods
1515
in a replication controller, deployment, replica set or stateful set based on observed CPU utilization
1616
(or, with beta support, on some other, application-provided metrics).
1717

@@ -244,8 +244,8 @@ There are two other types of metrics, both of which are considered *custom metri
244244
object metrics. These metrics may have names which are cluster specific, and require a more
245245
advanced cluster monitoring setup.
246246

247-
The first of these alternative metric types is *pod metrics*. These metrics describe pods, and
248-
are averaged together across pods and compared with a target value to determine the replica count.
247+
The first of these alternative metric types is *pod metrics*. These metrics describe Pods, and
248+
are averaged together across Pods and compared with a target value to determine the replica count.
249249
They work much like resource metrics, except that they *only* support a `target` type of `AverageValue`.
250250

251251
Pod metrics are specified using a metric block like this:
@@ -261,11 +261,11 @@ pods:
261261
```
262262

263263
The second alternative metric type is *object metrics*. These metrics describe a different
264-
object in the same namespace, instead of describing pods. The metrics are not necessarily
264+
object in the same namespace, instead of describing Pods. The metrics are not necessarily
265265
fetched from the object; they only describe it. Object metrics support `target` types of
266266
both `Value` and `AverageValue`. With `Value`, the target is compared directly to the returned
267267
metric from the API. With `AverageValue`, the value returned from the custom metrics API is divided
268-
by the number of pods before being compared to the target. The following example is the YAML
268+
by the number of Pods before being compared to the target. The following example is the YAML
269269
representation of the `requests-per-second` metric.
270270

271271
```yaml

0 commit comments

Comments
 (0)