mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-24 03:38:04 +00:00
corrected grammar and spelling in README.md (#540)
This commit is contained in:
16
README.md
16
README.md
@@ -8,12 +8,10 @@
|
||||
|
||||
<p align="center">A simplified way of working with Helm.</p>
|
||||
|
||||
|
||||
 [](https://github.com/komodorio/helm-dashboard/issues)    [](https://github.com/komodorio/helm-dashboard/releases)  [](https://github.com/komodorio/helm-dashboard) [](https://codecov.io/gh/komodorio/helm-dashboard)
|
||||
|
||||
<kbd>[<img src="images/screenshot.png" style="width: 100%; border: 1px solid silver;" border="1" alt="Screenshot">](images/screenshot.png)</kbd>
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
_Helm Dashboard_ is an **open-source project** which offers a UI-driven way to view the installed Helm charts, see their revision history and
|
||||
@@ -71,7 +69,7 @@ After installing, start the UI by running:
|
||||
helm dashboard
|
||||
```
|
||||
|
||||
The command above will launch the local Web server and will open the UI in new browser tab. The command will hang
|
||||
The command above will launch the local Web server and will open the UI in a new browser tab. The command will hang
|
||||
waiting for you to terminate it in command-line or web UI.
|
||||
|
||||
You can see the list of available command-line flags by running `helm dashboard --help`.
|
||||
@@ -86,7 +84,7 @@ If your port 8080 is busy, you can specify a different port to use via `--port <
|
||||
|
||||
If you need to limit the operations to a specific namespace, please use `--namespace=...` in your command-line. You can specify multiple namespaces, separated by commas.
|
||||
|
||||
If you don't want browser tab to automatically open, add `--no-browser` flag in your command line.
|
||||
If you don't want the browser tab to automatically open, add `--no-browser` flag in your command line.
|
||||
|
||||
If you want to increase the logging verbosity and see all the debug info, use the `--verbose` flag.
|
||||
|
||||
@@ -117,9 +115,9 @@ Kindly read our [Contributing Guide](CONTRIBUTING.md) to learn and understand ab
|
||||
Prerequisites, binaries installed and operational:
|
||||
|
||||
- [Golang](https://go.dev/doc/install)
|
||||
- NodeJS
|
||||
- Node.js
|
||||
|
||||
There is a need to build frontend and then backend as series of commands, run:
|
||||
There is a need to build frontend and then backend as a series of commands, run:
|
||||
|
||||
### Linux
|
||||
|
||||
@@ -128,7 +126,7 @@ cd frontend && npm run build && cd ..
|
||||
go build -o bin/dashboard .
|
||||
```
|
||||
|
||||
or just `make build` that will do everything inside.
|
||||
Or just `make build` that will do everything inside.
|
||||
|
||||
Then, you can run `npm run dev` from `frontend` directory to work on frontend with Vite hot reload.
|
||||
|
||||
@@ -147,7 +145,7 @@ To install, checkout the source code and run from source dir:
|
||||
helm plugin install .
|
||||
```
|
||||
|
||||
Local installation of plugin just creates a symlink, so making the changes and rebuilding the binary would not require
|
||||
A local installation of the plugin just creates a symlink, so making the changes and rebuilding the binary would not require
|
||||
to
|
||||
reinstall a plugin.
|
||||
|
||||
@@ -159,12 +157,12 @@ helm dashboard
|
||||
|
||||
Then, use the web UI.
|
||||
|
||||
|
||||
## Development Snapshots
|
||||
|
||||
In our GitHub actions, we attach the built binaries as build artifacts, you can download and test it fully assembled.
|
||||
|
||||
Also, we upload `unstable` tag for Docker image upon every build of `main` branch, you can make our Helm chart to use that image by providing values:
|
||||
|
||||
```yaml
|
||||
image:
|
||||
pullPolicy: Always
|
||||
|
||||
Reference in New Issue
Block a user