Skip to content

Commit

Permalink
Merge pull request #4 from yaron2/readme
Browse files Browse the repository at this point in the history
readme update
  • Loading branch information
yaron2 authored Feb 17, 2019
2 parents 38cee08 + 2788b6b commit 2355268
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 68 deletions.
68 changes: 0 additions & 68 deletions README 2.md

This file was deleted.

66 changes: 66 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,69 @@
# 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](https://user-images.githubusercontent.com/645740/51940231-46cf5380-23c6-11e9-9433-39cdd4055b4c.gif)

## Setup

### Prerequisites

1. A Kubernetes cluster [(instructions)](https://kubernetes.io/docs/tutorials/kubernetes-basics/).

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

```cli
az aks get-credentials -n <cluster-name> -g <resource-group>
```

2. *Kubectl* has been installed and configured to work with your cluster [(instructions)](https://kubernetes.io/docs/tasks/tools/install-kubectl/).

### 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)](https://golang.org/doc/install).

Make sure you've already configured your GOPATH and GOROOT environment variables.
2. Dep [(instructions)](https://github.com/golang/dep).

### 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

Expand Down

0 comments on commit 2355268

Please sign in to comment.