Skip to content
/ keda Public

KEDA is a Kubernetes-based Event Driven Autoscaling component. It provides event driven scale for any container running in Kubernetes

License

Notifications You must be signed in to change notification settings

kedacore/keda

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kore - Event driven autoscaler and scale to zero for Kubernetes

Kore allows for fine grained autoscaling (including to/from zero) for event driven Kubernetes workloads. Kore serves as a Kubernetes Metrics Server and allows users to define autoscaling rules using a dedicated CRD.

Kore can run on both the cloud and the edge, integrates natively with Kubernetes components such as the Horizontal Pod Autoscaler, and has no external dependencies.

k

Setup

Prerequisites

  1. A Kubernetes cluster (instructions).

    Make sure your Kubernetes cluster is RBAC enabled. For AKS cluster ensure that you download the AKS cluster credentials with the following CLI

  az aks get-credentials -n <cluster-name> -g <resource-group>
  1. Kubectl has been installed and configured to work with your cluster (instructions).

Deploy Kore

Clone the repo:

git clone https://github.com/Azure/Kore.git

Deploy:

kubectl apply -f ./Kore/deploy

Getting Started

Development

Prerequisites

  1. The Go language environment (instructions).

    Make sure you've already configured your GOPATH and GOROOT environment variables.

  2. Dep (instructions).

Environment set up

First, clone the repo into your GOPATH:

cd $GOPATH/src
mkdir -p github.com/Azure/Kore
git clone https://github.com/Azure/Kore

Run dep:

cd $GOPATH/src/github.com/Azure/Kore
dep ensure

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.