-
Notifications
You must be signed in to change notification settings - Fork 449
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: KEDA v2.9 content by @tomkerkhove (#1012)
- Loading branch information
1 parent
5431b38
commit 65c87f9
Showing
3 changed files
with
105 additions
and
44 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
+++ | ||
title = "Announcing KEDA v2.9 🎉" | ||
date = 2022-12-12 | ||
author = "Jeff Hollan (KEDA), Tom Kerkhove (KEDA)" | ||
aliases = [ | ||
"/blog/releases/2.9.0" | ||
] | ||
+++ | ||
|
||
We recently completed our most recent release: 2.9.0 🎉! | ||
|
||
Here are some highlights: | ||
|
||
- Newly published Deprecations and Breaking Change policy ([docs](https://github.com/kedacore/governance/blob/main/DEPRECATIONS.md)) | ||
- Introduce new CouchDB, Etcd & Loki scalers | ||
- Introduce off-the-shelf Grafana dashboard for application autoscaling | ||
- Introduce improved operational metrics in Prometheus | ||
- Introduce capability to cache metric values for a scaler during the polling interval (experimental feature) | ||
- Azure Key Vault authentication provider now supports pod identities for authentication | ||
- A ton of new features and fixes for some of our 50+ scalers | ||
|
||
Potential breaking changes and deprecations include: | ||
- As per our [support policy](https://github.com/kedacore/governance/blob/main/SUPPORT.md), Kubernetes v1.23 or above is required and support for Kubernetes v1.22 or below was removed ([docs](https://keda.sh/docs/2.9/operate/cluster/#kubernetes-compatibility)) | ||
- Upgrading the API version of managed HPA objects from `autoscaling/v2beta2` to `autoscaling/v2` | ||
- Prometheus metrics on KEDA Metric Server are deprecated in favor of Prometheus metrics on KEDA Operator ([#3972](https://github.com/kedacore/keda/issues/3972) | [Discussion](https://github.com/kedacore/keda/discussions/3973)) | ||
|
||
You can keep an eye and join the discussion for future breaking changes and deprecations [in our GitHub issues](https://github.com/kedacore/keda/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Abreaking-change). | ||
|
||
## New & Improved Scalers | ||
|
||
KEDA now has 50+ built-in scalers, giving you instant access to provide event driven scale across a variety of sources. | ||
|
||
New scalers in this release are: | ||
- Etcd ([docs](https://keda.sh/docs/scalers/etcd/)) | ||
- CouchDB ([docs](https://keda.sh/docs/scalers/couchdb/)) | ||
- Loki ([docs](https://keda.sh/docs/scalers/loki/)) | ||
|
||
In addition to new scalers, various new features and improvements were added to Kafka, Azure Event Hubs, Azure Pipelines, GCP Storage, Metrics, NATS Jetstream, Prometheus, Pulsar, Azure Blob, GCP Stackdriver, and New Relic scalers. | ||
|
||
Here are a few improvement highlights: | ||
|
||
- **AWS Scalers:** Introduce new AWS endpoint URL settings | ||
- **Apache Kafka Scaler:** Support for SASL/OAuth bearer authentication and/orlimiting Kafka partitions KEDA will monitor | ||
- **Azure Event Hubs Scaler:** Support Azure Active Directory Pod & Workload Identity authentication for Storage Blobs, Dapr checkpointing and using connection strings for Event Hub namespace instead of the Event Hub itself. | ||
- **Azure Service Bus Scaler:** Support for Shared Access Signature (SAS) tokens for authentication and use of regex in `queueName` / `subscriptionName` | ||
- **ElasticSearch Scaler:** Support for Elastic Cloud | ||
- **GCP Storage Scaler:** Support for blob prefix & delimiters | ||
- **Metrics API Scaler:** Support for unsafeSsl parameter to skip certificate validation when connecting over HTTPS | ||
- **NATS Jetstream Scaler:** Support for clustered scenarios | ||
- **NATS Scalers:** Support HTTPS protocol | ||
- **Prometheus Scaler:** Introduce skipping of certificate check for unsigned certs | ||
- **Pulsar Scaler:** Add support for basic and bearer token authentication along with support for partitioned topics | ||
|
||
Details on the underlying fixes can be found in the [changelog](https://github.com/kedacore/keda/blob/main/CHANGELOG.md#v290). | ||
|
||
## Production-grade operating experience for autoscaling applications | ||
|
||
There are a number of improvements into the ways KEDA provides operational information in Prometheus and how you can consume it. | ||
|
||
For starters, our operator now exposes Prometheus metrics which can be scraped on port `8080` at `/metrics`. It provides the same set of metrics as the metric server (although renamed) offers today, in addition to a few new metrics and the introduction of a `ScalerName` label. | ||
|
||
The metrics are moving given we are changing how KEDA is integrating with external systems so that we can improve the performance and reduce the load on those external systems. | ||
|
||
As part of this, we are deprecating the KEDA-specific metrics in our metric server and recommend end-users to use the metrics in the operator. Join our [conversation there](https://github.com/kedacore/keda/discussions/3973). | ||
|
||
Next, we have introduced `keda_resource_totals`and `keda_trigger_totals` that provide insights on your autoscaling landscape and the various autoscaling triggers that are being used. | ||
|
||
Metrics are great - But they have to be consumed. That's why we introduced a new Grafana dashboard allows you to easily visualize the KEDA metrics in Grafana to see how your applications are scaling: | ||
|
||
![Grafana Dashboard](/img/blog/v2.9-release/grafana-dashboard.png) | ||
|
||
Lastly, end-users using `ScaledJobs` can now see what the minimum replica count is when inspecting resources through the Kubernetes API. | ||
|
||
Learn more about our available Prometheus metrics and our Grafana dashboard in our [docs](https://keda.sh/docs/operate/prometheus/). | ||
|
||
## Introduce capability to cache metric values for a scaler during the polling interval (experimental feature) | ||
|
||
TODO: @zroubalik | ||
|
||
## New ways to authenticate | ||
|
||
In this release we have added some additional configuration options for triggers: | ||
|
||
Azure Key Vault authentication provider now allows end-users to use pod identities for authentication for improved simplicity & security: | ||
|
||
``` | ||
azureKeyVault: # Optional. | ||
vaultUri: https://keda.vault.azure.net | ||
+ podIdentity: # Optional. | ||
+ provider: azure-workload # Required. | ||
# Optionally, you can specify a user-assigned identity: identityId: <identity-id> | ||
secrets: # Required. | ||
- parameter: connection | ||
name: ServiceBus-ConnectionString | ||
``` | ||
|
||
Our Azure AD Pod Identity authentication now also has improved logs around integration with `aad-pod-identity` for simplified troubleshooting. | ||
|
||
## And more... | ||
|
||
This is just some of the highlights for the latest release. You can find the full release notes [here](https://github.com/kedacore/keda/releases/tag/v2.9.0). | ||
|
||
The next KEDA release is [scheduled for March 2023](https://github.com/kedacore/keda/blob/main/ROADMAP.md). | ||
|
||
Thanks to everyone for helping make KEDA better! |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.