An open API service indexing awesome lists of open source software.

https://github.com/scalecube/robokit


https://github.com/scalecube/robokit

Last synced: 23 days ago
JSON representation

Awesome Lists containing this project

README

        

## The problem

Continues delivey is important to speed up the development of your team. and its more relevant with complex microservices architecture. the more microservices are added to your echo system the more hassle is invoved for creating a standard how to continuesly deploy these services without making them slow down your ability to deliver them.

## This solution

`robokit` is a github application that track your git-flow development process and continuesly deploy the artifacts and triggers your continues delivery server pipelines. in such way that pull-requests, push events to develop, master branches continuesly delivered to your kubernetes evniroments.

## Setup

> `robokit` is a GitHub Application built with [Probot](https://github.com/probot/probot).

```sh
# Install dependencies
npm install

# Run the bot
npm start
```
## Enviroment variables:
For reverence please see env file located at the root of this project.

## Getting started
1. `robokit` once github application installed on a repositoy and asking for relevant access rights to listen on activity in github and update `check_run` status events. after the CI is completed it triggers continues delivery pipeline as webhook events that essetially will deploy the repos and artifacts to an enviroment for example kubernetes namespace.

the Continues delivery trigger bellow named `robo_kit_deploy` is activated when build docker and creation of helm push is completed:

add robokit.yml to your .github folder.
```
registry:
helm: nexus
docker: docker-hub

kubernetes:
cluster_name: scalecube.io
```

```
robokit-deploy:

needs:
- docker-build-push
- helm-package-post

runs-on: ubuntu-latest

steps:
- name: Robo-Kit Deploy
run: |
echo 'Run Robo-Kit Deploy'
```
# Check Run status update from spinnaker:
![image](https://user-images.githubusercontent.com/1706296/73777078-7ceda300-4791-11ea-9095-2bc58cdf7d61.png)