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
should read:
$ git clone https://github.com/sitewards/helm-chart ${HOME}/.helm/starters/sitewards
otherwise you will end up with path like ${HOME}/.helm/starters/sitewards/chart/chart.
Hi,
This command:
should be:
Also this one:
should read:
otherwise you will end up with path like
${HOME}/.helm/starters/sitewards/chart/chart.