Merge pull request #40 from a110605/update_readme

Update README integration mode block and add minimal required node version
This commit is contained in:
Francesco Torchia 2024-11-25 09:37:43 +01:00 committed by GitHub
commit 36dd2b4541
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,9 @@
Rancher Extension used in [rancher/dashboard](https://github.com/rancher/dashboard) for [Harvester](https://harvesterhci.io) Dashboard UI. Rancher Extension used in [rancher/dashboard](https://github.com/rancher/dashboard) for [Harvester](https://harvesterhci.io) Dashboard UI.
`
From Rancher 2.10.0, Harvester integration is provided by this new Harvester UI Extension. From Rancher 2.10.0, Harvester integration is provided by this new Harvester UI Extension.
`
## Installation ## Installation
@ -25,6 +27,11 @@ To install the Harvester UI Extension in Rancher 2.10.0 and newer:
This is what you probably want to get started. This is what you probably want to get started.
### Prerequisite
Nodejs version >= 20
### Standalone Mode ### Standalone Mode
For development, serve with hot reload at https://localhost:8005 For development, serve with hot reload at https://localhost:8005
@ -46,16 +53,15 @@ RANCHER_ENV=harvester VUE_APP_SERVER_VERSION=your-harvester-server-version API=h
RANCHER_ENV=harvester VUE_APP_SERVER_VERSION=v1.4.0 API=https://192.168.1.123 yarn dev RANCHER_ENV=harvester VUE_APP_SERVER_VERSION=v1.4.0 API=https://192.168.1.123 yarn dev
``` ```
### Integration Mode ### Rancher Integration Mode
In this mode, you need to have Rancher and import Harvester, more detail in [Harvester Integration | Rancher](https://ranchermanager.docs.rancher.com/v2.6/integrations-in-rancher/harvester). In this mode, you need to have Rancher and run Harvester UI Extension as Rancher extension, see more detail in [Rancher UI extension](https://extensions.rancher.io/extensions/next/extensions-getting-started#running-the-app).
```bash ```bash
# build harvester plugin API=https://your-rancher-ip yarn dev
yarn build-pkg harvester && yarn serve-pkgs
# Open another terminal window # Example
HARVESTER_PKG_URL=http://127.0.0.1:4500/harvester-${version}/harvester-${version}.umd.min.js API=https://your-rancher-ip RANCHER_ENV=harvester yarn mem-dev API=https://192.168.1.123 yarn dev
``` ```
## Contributing ## Contributing