Merge pull request #37836 from selansen/test_initpool
TestServiceWithDefaultAddressPoolInit
This commit is contained in:
commit
5ce4394486
1 changed files with 6 additions and 4 deletions
|
@ -401,9 +401,11 @@ func TestServiceWithDefaultAddressPoolInit(t *testing.T) {
|
|||
defer cli.Close()
|
||||
|
||||
// Create a overlay network
|
||||
name := "saanvisthira" + t.Name()
|
||||
network.CreateNoError(context.Background(), t, cli, name,
|
||||
network.WithDriver("overlay"))
|
||||
name := "sthira" + t.Name()
|
||||
overlayID := network.CreateNoError(context.Background(), t, cli, name,
|
||||
network.WithDriver("overlay"),
|
||||
network.WithCheckDuplicate(),
|
||||
)
|
||||
|
||||
var instances uint64 = 1
|
||||
serviceName := "TestService" + t.Name()
|
||||
|
@ -418,7 +420,7 @@ func TestServiceWithDefaultAddressPoolInit(t *testing.T) {
|
|||
_, _, err := cli.ServiceInspectWithRaw(context.Background(), serviceID, types.ServiceInspectOptions{})
|
||||
assert.NilError(t, err)
|
||||
|
||||
out, err := cli.NetworkInspect(context.Background(), name, types.NetworkInspectOptions{})
|
||||
out, err := cli.NetworkInspect(context.Background(), overlayID, types.NetworkInspectOptions{Verbose: true})
|
||||
assert.NilError(t, err)
|
||||
t.Logf("%s: NetworkInspect: %+v", t.Name(), out)
|
||||
assert.Assert(t, len(out.IPAM.Config) > 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue