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ó.
- Host: GitHub
- URL: https://github.com/bsstudio/helm-charts
- Owner: BSStudio
- License: mit
- Created: 2024-12-27T23:21:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-03T23:39:35.000Z (over 1 year ago)
- Last Synced: 2025-03-06T20:17:19.769Z (about 1 year ago)
- Topics: helm-charts, kubernetes
- Language: Smarty
- Homepage: http://charts.bsstudio.hu/
- Size: 39.1 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
---
# 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.