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

https://github.com/bsstudio/helm-charts

Helm Charts for various applications used by Budavári Schönherz Stúdió.
https://github.com/bsstudio/helm-charts

helm-charts kubernetes

Last synced: about 1 month ago
JSON representation

Helm Charts for various applications used by Budavári Schönherz Stúdió.

Awesome Lists containing this project

README

          


Budavári Schönherz Stúdió logo

---

# Helm Charts

This repository contains Helm charts used to deploy and manage applications and infrastructure for Budavári Schönherz Stúdió.

## Get Started

```bash
helm repo add bsstudio https://charts.bsstudio.hu
helm search repo bsstudio
helm install example bsstudio/
```

## Contributing

If you want to add a new application or change on of the existing ones please follow the steps here.

### Pre-commit

Pre-commit will make sure that your changes follow the guidelines of this repository. To enable the hooks to the following:

```bash
python -m venv venv

# Windows
venv\Scripts\Activate.ps1

# Linux or macOS
source venv/bin/activate

pip install -r requirements.txt

pre-commit install
```

> [!NOTE]
> If your `pip install` fails, check [checkov's requirements](https://github.com/bridgecrewio/checkov#requirements). Your Python version might not be supported.

### Checkov

Before pushing your changes to the repository run the checkov scan locally.

```bash
checkov -d . --config-file .github/configs/.checkov.yaml
```

Checkov should be installed from the previous `pre-commit` step.