From d4592803dae204ccae5a057b1b9bcd1b72947070 Mon Sep 17 00:00:00 2001 From: Zbynek Roubalik Date: Mon, 6 Apr 2020 20:04:26 +0200 Subject: [PATCH] instructions on trying v2 alpha Signed-off-by: Zbynek Roubalik --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ef2d98adc2a..3d19c4263bc 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,15 @@

This branch contains unstable KEDA v2.0.0-alpha1, currently under development

- +## How can I try KEDA v2 alpha version? +Make sure to remove previous KEDA (including CRD) from the cluster. Switch to the `v2` branch and deploy yaml files: +```bash + git fetch --all + git checkout v2 + kubectl apply -f deploy/crds/keda.sh_scaledobjects_crd.yaml + kubectl apply -f deploy/crds/keda.sh_scaledjob_crd.yaml + kubectl apply -f deploy/crds/keda.sh_triggerauthentications_crd.yaml + kubectl apply -f deploy/ +```