update docs
This commit is contained in:
parent
c8bcca0845
commit
a276dc47e0
1 changed files with 23 additions and 0 deletions
|
@ -25,13 +25,34 @@ Weave is deployed by kubespray using daemonSet
|
||||||
```
|
```
|
||||||
# From client
|
# From client
|
||||||
kubectl -n kube-system get pods | grep weave
|
kubectl -n kube-system get pods | grep weave
|
||||||
|
# output
|
||||||
|
weave-net-50wd2 2/2 Running 0 2m
|
||||||
|
weave-net-js9rb 2/2 Running 0 2m
|
||||||
```
|
```
|
||||||
|
There must be as many as nodes (here kubernetes have 2 nodes so there are 2 pods weave).
|
||||||
|
|
||||||
* Check status of weave (connection,encryption ...) for each node
|
* Check status of weave (connection,encryption ...) for each node
|
||||||
|
|
||||||
```
|
```
|
||||||
# On nodes
|
# On nodes
|
||||||
curl http://127.0.0.1:6784/status
|
curl http://127.0.0.1:6784/status
|
||||||
|
# output on node1
|
||||||
|
Version: 2.0.1 (up to date; next check at 2017/08/01 13:51:34)
|
||||||
|
|
||||||
|
Service: router
|
||||||
|
Protocol: weave 1..2
|
||||||
|
Name: fa:16:3e:b3:d6:b2(node1)
|
||||||
|
Encryption: enabled
|
||||||
|
PeerDiscovery: enabled
|
||||||
|
Targets: 2
|
||||||
|
Connections: 2 (1 established, 1 failed)
|
||||||
|
Peers: 2 (with 2 established connections)
|
||||||
|
TrustedSubnets: none
|
||||||
|
|
||||||
|
Service: ipam
|
||||||
|
Status: ready
|
||||||
|
Range: 10.233.64.0/18
|
||||||
|
DefaultSubnet: 10.233.64.0/18
|
||||||
```
|
```
|
||||||
|
|
||||||
* Check parameters of weave for each node
|
* Check parameters of weave for each node
|
||||||
|
@ -39,6 +60,8 @@ curl http://127.0.0.1:6784/status
|
||||||
```
|
```
|
||||||
# On nodes
|
# On nodes
|
||||||
ps -aux | grep weaver
|
ps -aux | grep weaver
|
||||||
|
# output on node1 (here its use seed mode)
|
||||||
|
root 8559 0.2 3.0 365280 62700 ? Sl 08:25 0:00 /home/weave/weaver --name=fa:16:3e:b3:d6:b2 --port=6783 --datapath=datapath --host-root=/host --http-addr=127.0.0.1:6784 --status-addr=0.0.0.0:6782 --docker-api= --no-dns --db-prefix=/weavedb/weave-net --ipalloc-range=10.233.64.0/18 --nickname=node1 --ipalloc-init seed=fa:16:3e:b3:d6:b2,fa:16:3e:f0:50:53 --conn-limit=30 --expect-npc 192.168.208.28 192.168.208.19
|
||||||
```
|
```
|
||||||
|
|
||||||
### Consensus mode (default mode)
|
### Consensus mode (default mode)
|
||||||
|
|
Loading…
Reference in a new issue