This Helm Chart repository contains Charts, which I use to deploy my Demos on OpenShift/Kubernetes. It is mainly used by Cluster Bootstrap but it can be used individually as well.
Charts in this repo contains for example are:
- Red Hat Advanced Cluster Security Deployment and Initialization
- Pipeline Demo
- Compliance Operator Deployment and Configuration
helm repo add tjungbauer https://charts.stderr.at/
helm repo update
helm search repo tjungbauer
To install an individual Chart:
helm install $NAME tjungbauer/$CHART_NAME
Where:
- $NAME - is the name you want to give the installed Helm App
- $CHART_NAME - name of the chart found in
charts
directory
All Charts in this repository must pass the linting process. Use helm lint
and chart testing
tools.
This Repo is using two Github Actions to validate the Charts and to create the Helm repository:
- Lint and Test Charts: Uses Chart Tester to automatically verify all NEW (updated) Charts. This means that the version of a Chart must be incremented in order to be found by this action.
- Release Charts: Uses Chart Releaser to build the helm repository on Github Pages. This page is automatically created in the branch "gh-pages" and can be found at: https://charts.stderr.at/
For all the inspiration: https://github.com/redhat-cop/helm-charts