Skip to content

Testing

Nicholas Wilde edited this page Feb 11, 2021 · 2 revisions

Local

$ helm repo add nicholaswilde https://nicholaswilde.github.io/helm-charts/
"nicholaswilde" has been added to your repositories
$ helm repo update
Hang tight while we grab the latest from your chart repositories...
...Successfully got an update from the "nicholaswilde" chart repository
Update Complete. ⎈Happy Helming!# From the chartname directory
# Update the dependencies
$ helm dependency update
Hang tight while we grab the latest from your chart repositories...
...Successfully got an update from the "nicholaswilde" chart repository
Update Complete. ⎈Happy Helming!⎈
Saving 1 charts
Downloading common from repo https://nicholaswilde.github.io/helm-charts/
Deleting outdated charts
# Test the chart output
$ helm install mychart . --dry-run --debug
install.go:173: [debug] Original chart version: ""
install.go:190: [debug] CHART PATH: helm-charts/charts/chartname
...
a bunch of yaml stuff
...

Remote

$ helm repo add nicholaswilde https://nicholaswilde.github.io/helm-charts/
"nicholaswilde" has been added to your repositories
$ helm repo update
Hang tight while we grab the latest from your chart repositories...
...Successfully got an update from the "nicholaswilde" chart repository
Update Complete. ⎈Happy Helming!# Test the chart output
$ helm install mychart nicholaswilde/chartname --dry-run --debug
install.go:173: [debug] Original chart version: ""
install.go:190: [debug] CHART PATH: helm-charts/charts/chartname
...
a bunch of yaml stuff
...

Troubleshooting

See Troubleshooting

Clone this wiki locally