Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/boomerang-io/charts
- Owner: boomerang-io
- License: apache-2.0
- Created: 2019-10-26T15:48:29.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-08-21T07:02:44.000Z (3 months ago)
- Last Synced: 2024-08-21T08:25:30.716Z (3 months ago)
- Topics: automation, boomerang, helm, helm-charts, openpolicyagent, policy, workflow
- Language: Smarty
- Homepage:
- Size: 572 KB
- Stars: 3
- Watchers: 9
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
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 v3Plus 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.