Skip to content

Commit

Permalink
Merge branch 'main' of github.com:kedacore/keda-docs
Browse files Browse the repository at this point in the history
Signed-off-by: Chaitanya Kuduvalli Ramachandra <[email protected]>
  • Loading branch information
Chaitanya Kuduvalli Ramachandra authored and Chaitanya Kuduvalli Ramachandra committed Nov 16, 2022
2 parents 8c0c632 + 03843f6 commit 7e41ea5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions content/docs/2.8/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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}
Expand Down

0 comments on commit 7e41ea5

Please sign in to comment.