Merge pull request #574 from brendandburns/run

Add a name to containers created by RunController so that validation works
This commit is contained in:
Daniel Smith 2014-07-22 23:02:49 -07:00
commit 212b8f6145

View File

@ -168,6 +168,7 @@ func RunController(image, name string, replicas int, client client.Interface, po
Manifest: api.ContainerManifest{
Containers: []api.Container{
{
Name: name,
Image: image,
Ports: makePorts(portSpec),
},