1
0
Fork 0
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:
Sebastiaan van Stijn 2022-06-27 15:12:14 +02:00
parent 4eb1c5bd52
commit db977355b0
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ ssd is a troubleshooting utility for Docker swarm networks.
### control-plane and datapath consistency check on a node ### 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). 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 ````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 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

View file

@ -55,7 +55,7 @@ func createNetworkDBInstances(t *testing.T, num int, namePrefix string, conf *Co
// Check that the cluster is properly created // Check that the cluster is properly created
for i := 0; i < num; i++ { for i := 0; i < num; i++ {
if num != len(dbs[i].ClusterPeers()) { 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() return poll.Success()