Skip to content

Commit 60af477

Browse files
authored
Update total scalers in catalog (#1549)
* Update total scalers in catalog Signed-off-by: rickbrouwer <[email protected]> * Improve sentence Signed-off-by: rickbrouwer <[email protected]> * Correction Signed-off-by: rickbrouwer <[email protected]> --------- Signed-off-by: rickbrouwer <[email protected]>
1 parent 53699b7 commit 60af477

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

config.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ description = "Application autoscaling made simple"
1919
what_is = """
2020
**KEDA** is a [Kubernetes](https://kubernetes.io)-based Event Driven Autoscaler. With KEDA, you can drive the scaling of any container in Kubernetes based on the number of events needing to be processed.
2121
22-
**KEDA** is a single-purpose and lightweight component that can be added into any Kubernetes cluster. KEDA works alongside standard Kubernetes components like the [Horizontal Pod Autoscaler](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/) and can extend functionality without overwriting or duplication. With KEDA you can explicitly map the apps you want to use event-driven scale, with other apps continuing to function. This makes KEDA a flexible and safe option to run alongside any number of any other Kubernetes applications or frameworks.
22+
**KEDA** is a single-purpose and lightweight component that can be added into any Kubernetes cluster. KEDA works alongside standard Kubernetes components like the [Horizontal Pod Autoscaler](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/) and can extend functionality without overwriting or duplication. With KEDA, you can explicitly map the apps you want to use event-driven scale, with other apps continuing to function. This makes KEDA a flexible and safe option to run alongside any number of any other Kubernetes applications or frameworks.
2323
"""
2424

2525
locale = "en_US"
@@ -401,7 +401,7 @@ icon = "fas fa-bolt"
401401

402402
[[params.features]]
403403
title = "Built-in Scalers"
404-
content = "Catalog of 50+ built-in scalers for various cloud platforms, databases, messaging systems, telemetry systems, CI/CD, and more"
404+
content = "Catalog of 70+ built-in scalers for various cloud platforms, databases, messaging systems, telemetry systems, CI/CD, and more"
405405
icon = "fas fa-cubes"
406406

407407
[[params.features]]

content/docs/2.17/scalers/cron.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ triggers:
3232
> 💡 **Note:** `start`/`end` support ["Linux format cron"](https://en.wikipedia.org/wiki/Cron) (Minute Hour Dom Month Dow).
3333

3434
> **Notice:**
35-
> **Start and end should not be same.**
35+
> **Start and end should not be the same.**
3636
>
3737
> For example, the following schedule is not valid:
3838
> ```yaml
@@ -52,13 +52,13 @@ What the CRON scaler does **not** do, is scale your workloads based on a recurri
5252

5353
### Scale to 0 during off hours
5454

55-
If you want to scale you deployment to 0 outside office hours / working hours,
55+
If you want to scale your deployment to 0 outside office hours / working hours,
5656
you need to set `minReplicaCount: 0` in the ScaledObject, and increase the
5757
replicas during work hours. That way the Deployment will be scaled to 0 outside
5858
that time window. By default the ScaledObject `cooldownPeriod` is 5 minutes, so the actual
5959
scaling down will happen 5 minutes after the cron schedule `end` parameter.
6060

61-
It's almost always an error to try to do the other way
61+
It's almost always an error to try to do it the other way
6262
around, i.e. set `desiredReplicas: 0` in the cron trigger.
6363

6464
#### Example: scale up to 10 replicas from 6AM to 8PM and scale down to 0 replicas otherwise

0 commit comments

Comments
 (0)