https://github.com/barrelmaker97/charts
Helm Chart Library for Kubernetes
https://github.com/barrelmaker97/charts
helm helm-charts kubernetes
Last synced: about 1 month ago
JSON representation
Helm Chart Library for Kubernetes
- Host: GitHub
- URL: https://github.com/barrelmaker97/charts
- Owner: barrelmaker97
- License: gpl-3.0
- Created: 2021-02-22T17:07:31.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2026-05-23T13:25:18.000Z (about 1 month ago)
- Last Synced: 2026-05-23T15:20:09.367Z (about 1 month ago)
- Topics: helm, helm-charts, kubernetes
- Language: Go Template
- Homepage:
- Size: 4.85 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Personal Helm Chart Library for Kubernetes
Applications I use, ready to launch on Kubernetes using [Kubernetes Helm](https://github.com/helm/helm).
## TL;DR
```bash
helm repo add barrelmaker https://charts.barrelmaker.dev
helm search repo barrelmaker
helm install my-release barrelmaker/
```

## Before you begin
### Prerequisites
- Kubernetes 1.12+
- Helm 3.1.0
### Setup a Kubernetes Cluster
For setting up Kubernetes on other cloud platforms or bare-metal servers refer to the Kubernetes [getting started guide](http://kubernetes.io/docs/getting-started-guides/).
### Install Helm
Helm is a tool for managing Kubernetes charts. Charts are packages of pre-configured Kubernetes resources.
To install Helm, refer to the [Helm install guide](https://github.com/helm/helm#install) and ensure that the `helm` binary is in the `PATH` of your shell.
### Add Repo
The following command allows you to download and install all the charts from this repository:
```bash
helm repo add barrelmaker https://charts.barrelmaker.dev
```
### Using Helm
Once you have installed the Helm client, you can deploy a Helm Chart into a Kubernetes cluster.
Please refer to the [Quick Start guide](https://helm.sh/docs/intro/quickstart/) if you wish to get running in just a few commands, otherwise the [Using Helm Guide](https://helm.sh/docs/intro/using_helm/) provides detailed instructions on how to use the Helm client to manage packages on your Kubernetes cluster.
Useful Helm Client Commands:
* View available charts: `helm search repo`
* Install a chart: `helm install my-release barrelmaker/`
* Upgrade your application: `helm upgrade`
# License
Copyright (c) 2026 Nolan Cooper
This chart collection is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This chart collection is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this chart collection. If not, see .