2015-04-16 00:58:15 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2015-05-04 14:49:53 -04:00
|
|
|
"fmt"
|
|
|
|
|
2015-04-16 00:58:15 -04:00
|
|
|
"github.com/docker/libnetwork"
|
2015-05-04 14:49:53 -04:00
|
|
|
"github.com/docker/libnetwork/netutils"
|
2015-05-06 00:19:57 -04:00
|
|
|
"github.com/docker/libnetwork/pkg/netlabel"
|
2015-04-16 00:58:15 -04:00
|
|
|
"github.com/docker/libnetwork/pkg/options"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// Create a new controller instance
|
|
|
|
controller := libnetwork.New()
|
|
|
|
|
2015-04-22 19:47:07 -04:00
|
|
|
// Select and configure the network driver
|
|
|
|
networkType := "bridge"
|
2015-04-30 20:57:06 -04:00
|
|
|
|
|
|
|
driverOptions := options.Generic{}
|
|
|
|
genericOption := make(map[string]interface{})
|
2015-05-06 00:19:57 -04:00
|
|
|
genericOption[netlabel.GenericData] = driverOptions
|
2015-04-30 20:57:06 -04:00
|
|
|
err := controller.ConfigureNetworkDriver(networkType, genericOption)
|
2015-04-16 00:58:15 -04:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a network for containers to join.
|
2015-04-30 20:57:06 -04:00
|
|
|
// NewNetwork accepts Variadic optional arguments that libnetwork and Drivers can make of
|
|
|
|
network, err := controller.NewNetwork(networkType, "network1")
|
2015-04-16 00:58:15 -04:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// For each new container: allocate IP and interfaces. The returned network
|
|
|
|
// settings will be used for container infos (inspect and such), as well as
|
2015-04-17 18:42:23 -04:00
|
|
|
// iptables rules for port publishing. This info is contained or accessible
|
|
|
|
// from the returned endpoint.
|
2015-04-30 20:57:06 -04:00
|
|
|
ep, err := network.CreateEndpoint("Endpoint1")
|
2015-04-16 00:58:15 -04:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-04-28 01:57:36 -04:00
|
|
|
// A container can join the endpoint by providing the container ID to the join
|
|
|
|
// api which returns the sandbox key which can be used to access the sandbox
|
|
|
|
// created for the container during join.
|
2015-04-30 20:57:06 -04:00
|
|
|
// Join acceps Variadic arguments which will be made use of by libnetwork and Drivers
|
|
|
|
_, err = ep.Join("container1",
|
|
|
|
libnetwork.JoinOptionHostname("test"),
|
|
|
|
libnetwork.JoinOptionDomainname("docker.io"))
|
2015-04-28 01:57:36 -04:00
|
|
|
if err != nil {
|
2015-04-16 00:58:15 -04:00
|
|
|
return
|
|
|
|
}
|
2015-05-04 14:49:53 -04:00
|
|
|
|
|
|
|
// libentwork client can check the endpoint's operational data via the Info() API
|
|
|
|
epInfo, err := ep.Info()
|
2015-05-06 00:19:57 -04:00
|
|
|
mapData, ok := epInfo[netlabel.PortMap]
|
2015-05-04 14:49:53 -04:00
|
|
|
if ok {
|
|
|
|
portMapping, ok := mapData.([]netutils.PortBinding)
|
|
|
|
if ok {
|
|
|
|
fmt.Printf("Current port mapping for endpoint %s: %v", ep.Name(), portMapping)
|
|
|
|
}
|
|
|
|
}
|
2015-04-16 00:58:15 -04:00
|
|
|
}
|