Skip to content

Commit

Permalink
add weavescope tutorial and demo view.
Browse files Browse the repository at this point in the history
Signed-off-by: Tomoya.Fujita <[email protected]>
  • Loading branch information
fujitatomoya committed Jul 29, 2024
1 parent 2c54a98 commit 18a0671
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docs/Setup_Kubernetes_Cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,27 @@ This problem is issued on https://github.com/weaveworks/weave/issues/3976, and a
> kubectl delete -f https://github.com/weaveworks/weave/releases/download/v2.8.1/weave-daemonset-k8s.yaml
```
#### [WeaveScope](https://github.com/weaveworks/scope) **(E.O.L)**
Weave also provides a powerful visualization and monitoring tool specifically designed for Docker and Kubernetes environments called scope.
```bash
### Install
> kubectl apply -f https://github.com/weaveworks/scope/releases/download/v1.13.2/k8s-scope.yaml
### Uninstall
> kubectl delete -f https://github.com/weaveworks/scope/releases/download/v1.13.2/k8s-scope.yaml
```
By default, weavescope uses Cluster IP address, so we need to `port-forward` it to the node IP address and port.
```bash
> kubectl port-forward svc/weave-scope-app -n weave 4040:80 --address YOUR_NODE_IP
```
and then, you should see the following UI via `http://<YOUR_NODE_IP>:4040/`
![WeaveScope Web UI](./../images/weavescope.png)
#### Security Encryption
WeaveNet provides authentication and encryption based on password, which is used for create session keys for the communication between peers.
Expand Down
Binary file added images/weavescope.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 18a0671

Please sign in to comment.