Skip to content

camptocamp/charts

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
scc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

CampToCamp Helm Charts Repo

This is the camptocamp charts repository.

Helm Documentation

https://github.com/kubernetes/helm/blob/master/docs/index.md

Install helm on minishift

https://blog.openshift.com/deploy-helm-charts-minishifts-openshift-local-development/

How It Works

We use the master branch to store our charts code, and gh-pages branch as the charts repository.

GitHub Pages points to the docs folder and our repository is accessible on https://camptocamp.github.io/charts

Add this repo to helm

helm repo add c2c https://camptocamp.github.io/charts

Add a chart

CHART=s3-exporter
helm create $CHART
helm package $CHART -d docs
helm repo index docs --url https://camptocamp.github.io/charts
git add .
git commit -m "add chart $CHART"
git push origin master

Update a chart

export CHART=gitlab-backup
helm package $CHART -d docs
helm repo index docs --url https://camptocamp.github.io/charts
git add .
git commit -m "updated $CHART"
git push origin master

Hello-world chart

The hello-world chart was created from a tutorial on charts. It's here as an example to understand basic concepts of charts.