Skip to content

Commit

Permalink
Merge pull request #58 from jacktao007/dev-0909
Browse files Browse the repository at this point in the history
add port access
  • Loading branch information
dlimeng authored Sep 9, 2023
2 parents 2ff2414 + 00ab870 commit 3fcee67
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
14 changes: 12 additions & 2 deletions docs/deployment/deplpyment-kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,18 @@ cd SolidUI/deploy/kubernetes/helm-solidui
helm install solidui ./
```

### 2.3 Accessing Services
### 2.3 View the service status and ingress port
```
//View pod status
kubectl get pods -n solidui
//View the ingress port
kubectl get svc -A |grep ingress-nginx-controller
//If you do not use ingress access, you can access it through the port-forward forwarding port
kubectl port-forward svc/solidui-web 80:8099 --address 0.0.0.0 -n solidui
```

### 2.4 Accessing Services

Access link http://ingress-ip-address:8099
Access link http://ingress-ip-address:ingress-port

Default username and password: admin/admin
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,18 @@ cd SolidUI/deploy/kubernetes/helm-solidui
helm install solidui ./
```

### 2.3 访问服务
### 2.3 查看服务状态及ingress端口
```
//查看pod状态
kubectl get pods -n solidui
//查看ingress端口
kubectl get svc -A |grep ingress-nginx-controller
//如果不使用ingress访问可通过port-forward转发端口进行访问
kubectl port-forward svc/solidui-web 80:8099 --address 0.0.0.0 -n solidui
```

### 2.4 访问服务

访问链接 http://ingress-ip-address:8099
访问链接 http://ingress-ip-address:ingress-port

默认用户名密码:admin/admin

0 comments on commit 3fcee67

Please sign in to comment.