mirror of
https://github.com/status-im/consul.git
synced 2025-01-12 23:05:28 +00:00
62005369b5
Co-authored-by: R.B. Boyer <4903+rboyer@users.noreply.github.com> Co-authored-by: R.B. Boyer <rb@hashicorp.com> Co-authored-by: Freddy <freddygv@users.noreply.github.com>
18 lines
430 B
Go
18 lines
430 B
Go
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
|
|
}
|