1
0
mirror of https://github.com/rancher/types.git synced 2025-08-29 17:12:44 +00:00

Add localclusterdialer

This commit is contained in:
Darren Shepherd 2018-02-26 22:26:40 -07:00
parent ae72444a8d
commit 2971d84e13

View File

@ -5,6 +5,7 @@ import "net"
type Dialer func(network, address string) (net.Conn, error)
type Factory interface {
LocalClusterDialer() Dialer
ClusterDialer(clusterName string) (Dialer, error)
DockerDialer(clusterName, machineName string) (Dialer, error)
NodeDialer(clusterName, machineName string) (Dialer, error)