Document the minimal install

This commit is contained in:
Andrey Pohilko
2022-08-23 10:01:14 +03:00
parent 0b4931a73a
commit 07afc6c6ef
5 changed files with 28 additions and 4 deletions

View File

@@ -2,6 +2,27 @@
A simplified way of working with Helm.
## Local Testing
Until we make our repo public, we have to use a custom way to install the plugin.
To install, checkout the source code and run from source dir:
```shell
helm plugin install .
```
There is a need to build binary for plugin to function, run:
```shell
go build -o bin/dashboard .
```
Local install of plugin just creates a symlink, so making the changes and rebuilding the binary would not require reinstall of a plugin.
To uninstall, run:
```shell
helm plugin uninstall dashboard
```
## Roadmap