Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/boomerang-io/charts

Helm charts for Boomerang Projects
https://github.com/boomerang-io/charts

automation boomerang helm helm-charts openpolicyagent policy workflow

Last synced: about 7 hours ago
JSON representation

Helm charts for Boomerang Projects

Awesome Lists containing this project

README

        

# Boomerang Helm Charts

Helm charts for Boomerang-io projects ready to launch on Kubernetes using [Helm](https://helm.sh).

All our charts are Helm v3 charts.

The containers are available on [DockerHub](https://hub.docker.com/search?q=boomerangio&type=image)

## Available Charts

- Boomerang Bosun
- Boomerang Flow
- Boomerang oauth2-proxy (forked from [oauth2-proxy](https://github.com/oauth2-proxy/oauth2-proxy))
- Boomerang Common (library chart for common template functions)

## Pre-requisites

- Kubernetes 1.13+
- Helm v3

Plus any additional dependencies by chart. For example Boomerang Flow depends on MongoDB. Please read the individual charts READMEs.

### Image Policies

If you are kubernetes cluster uses ClusterImagePolicy or ImagePolicy you may need to add `docker.io/boomerangio/*:*` to your policies to be able to retrieve the images.

## Getting Started

To quickly get started, install into a kubernetes cluster of 1.13+ via Helm using the following commands

**Step 1**

Make sure you have the helm repository available

```sh
helm repo add boomerang-io https://raw.githubusercontent.com/boomerang-io/charts/index
```

**Step 2**

Install or upgrade the helm chart using the relevant helm commands and passing in any properties

```sh
helm install --namespace --set database.mongodb.host= --set database.mongodb.secretName= boomerang-io/bmrg-bosun
```

*Or Manually*

Extract the values.yaml from the helm chart and update the values in detail

```sh
helm inspect values boomerang-io/bmrg-bosun > bmrg-bosun-values.yaml
vi bmrg-bosun-values.yaml
helm install --namespace -f bmrg-bosun-values.yaml boomerang-io/bmrg-bosun
```

## Repository Structure

This helm repository services dual purposes as both the source control of the raw charts, and also the helm repository.

The helm repository uses the tgz files from the repositories Releases but also the index.yaml in the `index` branch. This branch is protected and only used by the CICD system.

## CICD

The CICD for this repository is currently using an instance of Boomerang CICD inside of IBM. This automation will package the charts and push them back to this repository as mentioned in the repositroy structure above.