Skip to content

Commit

Permalink
2.3 is live! (kedacore#456)
Browse files Browse the repository at this point in the history
* 2.3 is live!

Signed-off-by: GitHub <noreply@github.com>

* Improve blog post names

Signed-off-by: GitHub <noreply@github.com>

* Sloppy change 🤦‍♂️

Signed-off-by: GitHub <noreply@github.com>

* Backwards compatability

Signed-off-by: GitHub <noreply@github.com>

* Update deployment docs

Signed-off-by: GitHub <noreply@github.com>
  • Loading branch information
tomkerkhove authored May 27, 2021
1 parent 54ffc48 commit 938f563
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 18 deletions.
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ alpine_js_version = "2.2.1"
favicon = "favicon.png"

[params.versions]
docs = ["2.2", "2.1", "2.0", "1.5", "1.4"]
docs = ["2.3", "2.2", "2.1", "2.0", "1.5", "1.4"]

# Site fonts. For more options see https://fonts.google.com.
[[params.fonts]]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
title = "Kubernetes Event-driven Autoscaling (KEDA) is now an official CNCF Sandbox project 🎉"
date = 2020-03-31
author = "KEDA Maintainers"
aliases = [
"/blog/keda-cncf-sandbox/"
]
+++

Over the past year, We've been contributing to Kubernetes Event-Driven Autoscaling (KEDA), which makes application autoscaling on Kubernetes dead simple. If you have missed it, read about it in our ["Exploring Kubernetes-based event-driven autoscaling (KEDA)"](https://blog.tomkerkhove.be/2019/06/11/a-closer-look-at-kubernetes-based-event-driven-autoscaling-keda/) blog post.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
title = "Give KEDA 2.0 (Beta) a test drive"
date = 2020-09-11
author = "KEDA Maintainers"
aliases = [
"/blog/keda-2.0-beta/"
]
+++

Today, we are happy to share that our first **beta version of KEDA 2.0 is available**! 🎊
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
title = "Announcing KEDA 2.0 - Taking app autoscaling to the next level"
date = 2020-11-04
author = "KEDA Maintainers"
aliases = [
"/blog/keda-2.0-release/"
]
+++

A year ago, we were excited to **announce our 1.0 release with a core set of scalers**, allowing the community to start autoscaling Kubernetes deployments. We were thrilled with the response and encouraged to see many users leveraging KEDA for event driven and serverless scale within any Kubernetes cluster.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
title = "Migrating our container images to GitHub Container Registry"
date = 2021-03-26
author = "KEDA Maintainers"
aliases = [
"/blog/migrating-to-github-container-registry/"
]
+++

We provide **various ways to [deploy KEDA](https://keda.sh/docs/latest/deploy/) in your cluster** including by using [Helm chart](https://github.com/kedacore/charts), [Operator Hub](https://operatorhub.io/operator/keda) and raw YAML specifications.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
title = "Why Alibaba Cloud uses KEDA for application autoscaling"
date = 2021-04-06
author = "Yan Xun, Andy Shi, and Tom Kerkhove"
aliases = [
"/blog/why-alibaba-cloud-uses-keda-for-app-autoscaling/"
]
+++

> This blog post was initially posted on [CNCF blog](https://www.cncf.io/blog/2021/03/30/why-alibaba-cloud-uses-keda-for-application-autoscaling/) and is co-authored by Yan Xun, Senior Engineer from Alibaba Cloud EDAS team & Andy Shi, Developer Advocator from Alibaba Cloud.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
+++
title = "Autoscaling Azure Pipelines agents with KEDA"
date = 2021-04-28
date = 2021-05-27
author = "Troy Denorme"
+++

Expand Down
16 changes: 8 additions & 8 deletions content/docs/2.3/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,43 +69,43 @@ Locate installed KEDA Operator in `keda` namespace, then remove created `KedaCon
If you want to try KEDA on [Minikube](https://minikube.sigs.k8s.io) or a different Kubernetes deployment without using Helm you can still deploy it with `kubectl`.

- We provide sample YAML declaration which includes our CRDs and all other resources in a file which is available on the [GitHub releases](https://github.com/kedacore/keda/releases) page.
Run the following command (if needed, replace the version, in this case `2.0.0`, with the one you are using):
Run the following command (if needed, replace the version, in this case `2.3.0`, with the one you are using):

```sh
kubectl apply -f https://github.com/kedacore/keda/releases/download/v2.0.0/keda-2.0.0.yaml
kubectl apply -f https://github.com/kedacore/keda/releases/download/v2.3.0/keda-2.3.0.yaml
```

- Alternatively you can download the file and deploy it from the local path:
```sh
kubectl apply -f keda-2.0.0.yaml
kubectl apply -f keda-2.3.0.yaml
```

- You can also find the same YAML declarations in our `/config` directory on our [GitHub repo](https://github.com/kedacore/keda) if you prefer to clone it.

```sh
git clone https://github.com/kedacore/keda && cd keda
VERSION=2.0.0 make deploy
VERSION=2.3.0 make deploy
```

### Uninstall

- In case of installing from released YAML file just run the following command (if needed, replace the version, in this case `2.0.0`, with the one you are using):
- In case of installing from released YAML file just run the following command (if needed, replace the version, in this case `2.3.0`, with the one you are using):

```sh
kubectl delete -f https://github.com/kedacore/keda/releases/download/v2.0.0/keda-2.0.0.yaml
kubectl delete -f https://github.com/kedacore/keda/releases/download/v2.3.0/keda-2.3.0.yaml
```

- If you have downloaded the file locally, you can run:

```sh
kubectl delete -f keda-2.0.0.yaml
kubectl delete -f keda-2.3.0.yaml
```

- You would need to run these commands from within the directory of the cloned [GitHub repo](https://github.com/kedacore/keda):

```sh
VERSION=2.0.0 make undeploy
VERSION=2.3.0 make undeploy
```

## Deploying KEDA on MicroK8s {#microk8s}
Expand Down
16 changes: 8 additions & 8 deletions content/docs/2.4/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,43 +69,43 @@ Locate installed KEDA Operator in `keda` namespace, then remove created `KedaCon
If you want to try KEDA on [Minikube](https://minikube.sigs.k8s.io) or a different Kubernetes deployment without using Helm you can still deploy it with `kubectl`.

- We provide sample YAML declaration which includes our CRDs and all other resources in a file which is available on the [GitHub releases](https://github.com/kedacore/keda/releases) page.
Run the following command (if needed, replace the version, in this case `2.0.0`, with the one you are using):
Run the following command (if needed, replace the version, in this case `2.4.0`, with the one you are using):

```sh
kubectl apply -f https://github.com/kedacore/keda/releases/download/v2.0.0/keda-2.0.0.yaml
kubectl apply -f https://github.com/kedacore/keda/releases/download/v2.4.0/keda-2.4.0.yaml
```

- Alternatively you can download the file and deploy it from the local path:
```sh
kubectl apply -f keda-2.0.0.yaml
kubectl apply -f keda-2.4.0.yaml
```

- You can also find the same YAML declarations in our `/config` directory on our [GitHub repo](https://github.com/kedacore/keda) if you prefer to clone it.

```sh
git clone https://github.com/kedacore/keda && cd keda
VERSION=2.0.0 make deploy
VERSION=2.4.0 make deploy
```

### Uninstall

- In case of installing from released YAML file just run the following command (if needed, replace the version, in this case `2.0.0`, with the one you are using):
- In case of installing from released YAML file just run the following command (if needed, replace the version, in this case `2.4.0`, with the one you are using):

```sh
kubectl delete -f https://github.com/kedacore/keda/releases/download/v2.0.0/keda-2.0.0.yaml
kubectl delete -f https://github.com/kedacore/keda/releases/download/v2.4.0/keda-2.4.0.yaml
```

- If you have downloaded the file locally, you can run:

```sh
kubectl delete -f keda-2.0.0.yaml
kubectl delete -f keda-2.4.0.yaml
```

- You would need to run these commands from within the directory of the cloned [GitHub repo](https://github.com/kedacore/keda):

```sh
VERSION=2.0.0 make undeploy
VERSION=2.4.0 make undeploy
```

## Deploying KEDA on MicroK8s {#microk8s}
Expand Down

0 comments on commit 938f563

Please sign in to comment.