mirror of https://github.com/status-im/consul.git
21 lines
501 B
Go
21 lines
501 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package util
|
|
|
|
import (
|
|
"github.com/hashicorp/consul/testing/deployer/util/internal/ipamutils"
|
|
)
|
|
|
|
// GetPossibleDockerNetworkSubnets returns a copy of the global-scope network list.
|
|
func GetPossibleDockerNetworkSubnets() map[string]struct{} {
|
|
list := ipamutils.GetGlobalScopeDefaultNetworks()
|
|
|
|
out := make(map[string]struct{})
|
|
for _, ipnet := range list {
|
|
subnet := ipnet.String()
|
|
out[subnet] = struct{}{}
|
|
}
|
|
return out
|
|
}
|