helm-chart
helm-chart copied to clipboard
Makes develping the chart boilerplate easier.
$ helm create app --starter=sitewards/chart Creating app Error: could not load /home/user/.local/share/helm/starters/sitewards/chart: validation: chart.metadata is required
Hi, This command: ``` $ helm create chart --starter=sitewards/chart ${CHART_NAME} ``` should be: ``` $ helm create ${CHART_NAME} --starter=sitewards/chart ``` Also this one: ``` $ git clone https://github.com/sitewards/helm-chart ${HOME}/.helm/starters/sitewards/chart ```...
It appears that the generated Chart.yaml is coming from helm, not from your template. If I create a `foo` chart, then the contents of Chart.yaml are ``` apiVersion: v1 description:...