Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Create a dummy helm chart for test and package the chart chart, and save this chart in chartmuserum:

Code Block
languagebash
$ helm create simple-app
Creating simple-app$ helm package simple-appSuccessfully packaged chart and saved it to: <path-in-current-dir>/helm-manager/tmp
$ helm package simple-app
Successfully packaged chart and saved it to: <path>/simple-app-0.1.0.tgz

$ curl --data-binary @simple-app-0.1.0.tgz -X POST http://localhost:8222/api/charts

The commands below show examples of operations towards the helm manager using the dummy chart.

...