mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
fix typo (cluser -> cluster)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
4eb1c5bd52
commit
db977355b0
2 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ ssd is a troubleshooting utility for Docker swarm networks.
|
|||
### control-plane and datapath consistency check on a node
|
||||
ssd checks for the consistency between docker network control-plane (from the docker daemon in-memory state) and kernel data path programming. Currently the tool checks only for the consistency of the Load balancer (implemented using IPVS).
|
||||
|
||||
In a three node swarm cluser ssd status for a overlay network `ov2` which has three services running, each replicated to 3 instances.
|
||||
In a three node swarm cluster ssd status for a overlay network `ov2` which has three services running, each replicated to 3 instances.
|
||||
|
||||
````bash
|
||||
vagrant@net-1:~/code/go/src/github.com/docker/docker-e2e/tests$ docker run -v /var/run/docker.sock:/var/run/docker.sock -v /var/run/docker/netns:/var/run/docker/netns --privileged --net=host sanimej/ssd ov2
|
||||
|
|
|
@ -55,7 +55,7 @@ func createNetworkDBInstances(t *testing.T, num int, namePrefix string, conf *Co
|
|||
// Check that the cluster is properly created
|
||||
for i := 0; i < num; i++ {
|
||||
if num != len(dbs[i].ClusterPeers()) {
|
||||
return poll.Continue("%s:Waiting for cluser peers to be established", dbs[i].config.Hostname)
|
||||
return poll.Continue("%s:Waiting for cluster peers to be established", dbs[i].config.Hostname)
|
||||
}
|
||||
}
|
||||
return poll.Success()
|
||||
|
|
Loading…
Reference in a new issue