Merge pull request #702 from fsouza/update-go-dockerclient

third_party: update go-dockerclient
This commit is contained in:
brendandburns
2014-07-30 14:25:37 -07:00
16 changed files with 656 additions and 101 deletions

View File

@@ -289,7 +289,7 @@ func (kl *Kubelet) runContainer(pod *Pod, container *api.Container, podVolumes v
ExposedPorts: exposedPorts,
Hostname: container.Name,
Image: container.Image,
Memory: uint64(container.Memory),
Memory: int64(container.Memory),
CpuShares: int64(milliCPUToShares(container.CPU)),
Volumes: volumes,
WorkingDir: container.WorkingDir,