This repository holds a collection Helm charts for deploymet on Kubernetes clusters
This repository can be added to your Helm instance by running the repo add command.
helm repo add barney-buffet https://barneybuffet.github.io/helm-barney-buffet/Once the repository is added to your helm instance, a chart can be installed with the install command.
helm install -n bitcoin tor barney-buffet/tor --create-namespaceInitate/create a new helm chart with the create command.
helm create charts/torTo check your chart run the lint command on your chart.
helm lint charts/torOnce you are happy with the chart create the tgz package with the package command.
helm package charts/torAfter you have packaged up your chart it can be added to the repository index with the repo command.
helm repo index --url https://barneybuffet.github.io/helm-barney-buffet/ --merge index.yaml .