Skip to content

Commit

Permalink
Update yaml deploy instructions (kedacore#38)
Browse files Browse the repository at this point in the history
* Create keda namespace before deploying yaml files

Closes kedacore/keda#463
  • Loading branch information
ahmelsayed authored and jeffhollan committed Nov 16, 2019
1 parent 2e82a58 commit 559bd45
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions content/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,26 @@ Don't see what you need? Feel free to [create an issue](https://github.com/kedac

Deploying KEDA with Helm is very simple:

1. Add Helm repo
1. Add Helm repo
```cli
helm repo add kedacore https://kedacore.github.io/charts
```
2. Update Helm repo
2. Update Helm repo
```cli
helm repo update
```
3. Install `keda` Helm chart
3. Install `keda` Helm chart
###### Helm 2
```cli
helm install kedacore/keda --namespace keda --name keda
```
###### Helm 3
```cli
kubectl create namespace keda
helm install keda kedacore/keda --namespace keda
Expand All @@ -63,6 +63,7 @@ If you want to try KEDA on minikube or a different Kubernetes deployment without
We provide sample YAML declarations which includes our CRD - You can find them in our `/deploy` directory on our [GitHub repo](https://github.com/kedacore/keda).
```
kubectl create namespace keda
kubectl apply -f deploy/crds/keda.k8s.io_scaledobjects_crd.yaml
kubectl apply -f deploy/crds/keda.k8s.io_triggerauthentications_crd.yaml
kubectl apply -f deploy/
Expand Down

0 comments on commit 559bd45

Please sign in to comment.