2023-08-11 13:12:13 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
|
2023-07-17 22:15:22 +00:00
|
|
|
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
|
|
|
|
}
|