Fix the binary path

This commit is contained in:
Andrei Pohilko
2022-09-26 14:40:14 +01:00
parent 388c330390
commit c1732c86a5
2 changed files with 7 additions and 2 deletions

View File

@@ -18,6 +18,11 @@ To install it, simply run Helm command:
helm plugin install https://github.com/komodorio/helm-dashboard.git helm plugin install https://github.com/komodorio/helm-dashboard.git
``` ```
To update the plugin to the latest version, run:
```shell
helm plugin update dashboard
```
To uninstall, run: To uninstall, run:
```shell ```shell
@@ -108,7 +113,7 @@ To install, checkout the source code and run from source dir:
helm plugin install . helm plugin install .
``` ```
Local install of plugin just creates a symlink, so making the changes and rebuilding the binary would not require to Local installation of plugin just creates a symlink, so making the changes and rebuilding the binary would not require to
reinstall a plugin. reinstall a plugin.
To use the plugin, run in your terminal: To use the plugin, run in your terminal:

View File

@@ -2,7 +2,7 @@ name: "dashboard"
version: "0.0.5" version: "0.0.5"
usage: "A simplified way of working with Helm" usage: "A simplified way of working with Helm"
description: "View HELM situation in nice web UI" description: "View HELM situation in nice web UI"
command: "$HELM_PLUGIN_DIR/bin/dashboard" command: "$HELM_PLUGIN_DIR/bin/helm-dashboard"
hooks: hooks:
install: "cd $HELM_PLUGIN_DIR; scripts/install_plugin.sh" install: "cd $HELM_PLUGIN_DIR; scripts/install_plugin.sh"
update: "cd $HELM_PLUGIN_DIR; scripts/install_plugin.sh" update: "cd $HELM_PLUGIN_DIR; scripts/install_plugin.sh"