From 03843f67bf003cdf2e3b6cb0b8f3ec5e430b1206 Mon Sep 17 00:00:00 2001 From: Zbynek Roubalik Date: Wed, 16 Nov 2022 10:51:01 +0100 Subject: [PATCH] refer 2.8.1 version in the Deploy page (#979) Signed-off-by: Zbynek Roubalik Signed-off-by: Zbynek Roubalik --- content/docs/2.8/deploy.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/content/docs/2.8/deploy.md b/content/docs/2.8/deploy.md index 8cd2c3fdb..a04f88b8f 100644 --- a/content/docs/2.8/deploy.md +++ b/content/docs/2.8/deploy.md @@ -82,10 +82,10 @@ 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.8.0`, with the one you are using): +Run the following command (if needed, replace the version, in this case `2.8.1`, with the one you are using): ```sh -kubectl apply -f https://github.com/kedacore/keda/releases/download/v2.8.0/keda-2.8.0.yaml +kubectl apply -f https://github.com/kedacore/keda/releases/download/v2.8.1/keda-2.8.1.yaml ``` - Alternatively you can download the file and deploy it from the local path: @@ -98,27 +98,27 @@ kubectl apply -f keda-2..0.yaml ```sh git clone https://github.com/kedacore/keda && cd keda -VERSION=2.8.0 make deploy +VERSION=2.8.1 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.8.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.8.1`, with the one you are using): ```sh -kubectl delete -f https://github.com/kedacore/keda/releases/download/v2.8.0/keda-2.8.0.yaml +kubectl delete -f https://github.com/kedacore/keda/releases/download/v2.8.1/keda-2.8.1.yaml ``` - If you have downloaded the file locally, you can run: ```sh -kubectl delete -f keda-2.8.0.yaml +kubectl delete -f keda-2.8.1.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.8.0 make undeploy +VERSION=2.8.1 make undeploy ``` ## Deploying KEDA on MicroK8s {#microk8s}