vmware / vic

vSphere Integrated Containers Engine is a container runtime for vSphere.
http://vmware.github.io/vic
Other
639 stars 173 forks source link

Add bridge network to running container #743

Open hickeng opened 8 years ago

hickeng commented 8 years ago

Where #703 covers the personality portion of network connect and the application to stopped containers, this issue adds support for running containers. The workflow is:

// pseudo-code for adding two networks (although this isn't likely supported via the client cli constructs)
netA := network.Get(netAID)
netB := network.Get(netBID)
handle := execution.Get(id)
handle = network.Join(handle, netA)
handle = network.Join(handle, netB)
handle = network.Bind(handle)

This issue is for doing so with the IPAM segregation based bridge networks only, not the mapped vSphere networks that require a PCI hotadd of a new vNIC.

stuclem commented 7 years ago

Already in the release notes, so removing the kind/note tag.

mhagen-vmware commented 7 years ago

This is too big and needs to be decomposed

zjs commented 5 years ago

Blocked by vSphere guestinfo volatility bug (fixed in 6.5U1, possibly backported to a 6.0 update release). This can be considered once we no longer support versions that are impacted by this bug.