Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

readme update #4

Merged
merged 1 commit into from
Feb 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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