commit | 014da6246ef7f224597e4df8c128d38844b312d2 | [log] [tgz] |
---|---|---|
author | Ken Liu <ken.lj.hz@gmail.com> | Fri Sep 01 10:46:45 2023 +0800 |
committer | chickenlj <ken.lj.hz@gmail.com> | Fri Sep 01 11:20:30 2023 +0800 |
tree | 9381f6e8a72283621bfc68712c01dd9361c9fb12 | |
parent | c9bf378e8b34b98cd8e39e6efcc205d76c5f07b9 [diff] |
enhance nacos openapi logic (#1227)
Dubbo Admin is the console designed for better visualization of Dubbo services, it provides support for Dubbo3 and is compatible with 2.7.x, 2.6.x and 2.5.x.
There are four ways to deploy Dubbo Admin to a production environment.
Choose either method based on your environment, where Helm is the recommended installation method because Helm can be installed with a single click and automatically helps manage all of Admin's required production environment dependencies.
git clone https://github.com/apache/dubbo-admin.git
dubbo-admin-server/src/main/resources/application.properties
Designated Registration Center Addressmvn clean package -Dmaven.test.skip=true
mvn --projects dubbo-admin-server spring-boot:run
orcd dubbo-admin-distribution/target; java -jar dubbo-admin-${project.version}.jar
http://localhost:38080
Admin image hosting at: https://hub.docker.com/repository/docker/apache/dubbo-admin
1, the following 172.17.0.2
registry address is the docker run zookeeper registry address, modify the application.properties
file default parameters, such as registry address, etc. 2、Get the zookeeper registry address through docker inspect
. 3.Change 172.17.0.2
registry address to your current docker running zookeeper registry address.
admin.registry.address: zookeeper://172.17.0.2:2181 admin.config-center: zookeeper://172.17.0.2:2181 admin.metadata-report.address: zookeeper://172.17.0.2:2181
docker start
$ docker run -p 38080:38080 --name dubbo-admin -d dubbo-admin
Visit http://localhost:38080
1. Download Kubernetes manifests
$ git clone https://github.com/apache/dubbo-admin.git
Switch to the ‘deploy/k8s’ directory to see the Admin kubernetes resource file
$ cd /dubbo-admin/deploy/kubernetes
2. Install Dubbo Admin
modify application.properties Parameter configuration in configmap.yaml
,Just define the parameters to be overwritten。
Run the following command:
$ kubectl apply -f ./
3. Visit Admin
$ kubectl port-forward service dubbo-admin 38080:38080
Visit http://localhost:38080
There are two ways to run Admin through Help. They have the same effect, so you can choose any of the following.
1. Download chart source file
clone Dubbo Admin project storehouse:
$ git clone https://github.com/apache/dubbo-admin.git
Switch from the warehouse root directory to the following directory deploy/charts/dubbo-admin
$ cd dubbo-admin/deploy/charts/dubbo-admin
2. Install helm chart
Start parameters of Admin so that Admin can connect to the real production environment registry or configuration center. You can specify a custom configuration file through the following -f
help parameter:
properties: admin.registry.address: zookeeper://zookeeper:2181 admin.config-center: zookeeper://zookeeper:2181 admin.metadata-report.address: zookeeper://zookeeper:2181
zookeeper://zookeeper:2181
Visit address of the Kubernetes Cluster registration center zookeeper。
$ helm install dubbo-admin -f values.yaml .
properties
The content specified in the field will be overwritten Admin application.properties Specified default configuration,In addition to ‘properties’, you can customize other properties defined by Admin help chart,Here is availableComplete parameters。
3. Visit Admin
Visit http://127.0.0.1:38080
1. Add helm chart (Temporarily unavailable)
$ helm repo add dubbo-charts https://dubbo.apache.org/dubbo-charts $ helm repo update
2. Install helm chart
$ helm install dubbo-admin dubbo-charts/dubbo-admin
reference resources 1.4.1 Run Admin based on Chart warehouse Learn how to customize installation parameters.
$ helm install dubbo-admin -f properties.yaml dubbo-charts/dubbo-admin
3. Visit Dubbo Admin
Dubbo Admin Now that the installation should be successful, run the following command to obtain the access address:
$ kubectl --namespace default port-forward service/dubbo-admin 38080:38080
Visit http://127.0.0.1:38080
Below contains the description of the project structure for developers who want to contribute to make Dubbo Admin better.
dubbo-admin-ui/README.md for more detail
Set npm proxy mirror:
If you have network issue, you can set npm proxy mirror to speedup npm install:
add registry=https://registry.npmmirror.com
to ~/.npmrc
Run admin server project
backend is a standard spring boot project, you can run it in any java IDE
Run admin ui project
at directory dubbo-admin-ui
, run with npm run dev
.
visit web page
visit http://localhost:38082
, frontend supports hot reload.
Apache Dubbo admin is under the Apache 2.0 license, Version 2.0. See LICENSE for full license text.