Skip to content

Instantly share code, notes, and snippets.

@orospakr
Last active August 29, 2015 14:04
Show Gist options
  • Save orospakr/2ba2da1f5d15d48fd8ab to your computer and use it in GitHub Desktop.
Save orospakr/2ba2da1f5d15d48fd8ab to your computer and use it in GitHub Desktop.
Unhappy Kubernetes behaviour when trying './output/go/kubecfg -v=3 -p 8080:80 run dockerfile/nginx 2 myNginx'
[~/code/others/kubernetes]$ ./output/go/kubecfg -v=3 -p 8080:80 run dockerfile/nginx 2 myNginx
I0715 12:50:16.219593 54624 request.go:220] Waiting for completion of /operations/5
I0715 12:50:36.223987 54624 request.go:220] Waiting for completion of /operations/5
I0715 12:50:56.228018 54624 request.go:220] Waiting for completion of /operations/5
I0715 12:51:16.231184 54624 request.go:220] Waiting for completion of /operations/5
I0715 12:51:36.236739 54624 request.go:220] Waiting for completion of /operations/5
... and so on.
And on my CoreOS (+kelseyhightower) instance that's hosting Kube, badness is going on.
In particular, look for "port has already been allocated".
core@localhost ~ $ journalctl -f
-- Logs begin at Mon 2014-07-14 21:33:30 UTC. --
Jul 15 16:56:05 localhost proxy[423]: I0715 16:56:05.911339 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:05 localhost proxy[423]: I0715 16:56:05.911352 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:05 localhost proxy[423]: I0715 16:56:05.912104 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:05 localhost proxy[423]: I0715 16:56:05.913165 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:05 localhost proxy[423]: E0715 16:56:05.913194 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:05 localhost proxy[423]: E0715 16:56:05.913206 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:07 localhost proxy[423]: E0715 16:56:07.028180 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:56:07 localhost docker[543]: [7c82844d] -job pull(busybox, ) = OK (0)
Jul 15 16:56:07 localhost docker[543]: 2014/07/15 16:56:07 POST /containers/create?name=k8s--net--9acb0442--e7fb3356
Jul 15 16:56:07 localhost docker[543]: [7c82844d] +job create(k8s--net--9acb0442--e7fb3356)
Jul 15 16:56:07 localhost docker[543]: [7c82844d] -job create(k8s--net--9acb0442--e7fb3356) = OK (0)
Jul 15 16:56:07 localhost docker[543]: 2014/07/15 16:56:07 POST /containers/dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c/start
Jul 15 16:56:07 localhost docker[543]: [7c82844d] +job start(dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c)
Jul 15 16:56:07 localhost docker[543]: [7c82844d] +job allocate_interface(dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c)
Jul 15 16:56:07 localhost docker[543]: [7c82844d] -job allocate_interface(dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c) = OK (0)
Jul 15 16:56:07 localhost docker[543]: [7c82844d] +job allocate_port(dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c)
Jul 15 16:56:07 localhost docker[543]: port has already been allocated
Jul 15 16:56:07 localhost docker[543]: [7c82844d] -job allocate_port(dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c) = ERR (1)
Jul 15 16:56:07 localhost docker[543]: [7c82844d] +job release_interface(dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c)
Jul 15 16:56:07 localhost docker[543]: [7c82844d] -job release_interface(dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c) = OK (0)
Jul 15 16:56:07 localhost docker[543]: [7c82844d] +job release_interface(dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c)
Jul 15 16:56:07 localhost docker[543]: [7c82844d] -job release_interface(dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c) = OK (0)
Jul 15 16:56:07 localhost docker[543]: Cannot start container dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c: port has already been allocated
Jul 15 16:56:07 localhost docker[543]: [7c82844d] -job start(dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c) = ERR (1)
Jul 15 16:56:07 localhost docker[543]: [error] server.go:1025 Error: Cannot start container dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c: port has already been allocated
Jul 15 16:56:07 localhost docker[543]: [error] server.go:90 HTTP Error: statusCode=500 Cannot start container dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c: port has already been allocated
Jul 15 16:56:07 localhost kubelet[418]: E0715 16:56:07.226367 00418 kubelet.go:699] Failed to introspect network container. (API error (500): Cannot start container dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c: port has already been allocated
Jul 15 16:56:07 localhost kubelet[418]: ) Skipping manifest 9acb0442
Jul 15 16:56:07 localhost kubelet[418]: E0715 16:56:07.226396 00418 kubelet.go:772] Error syncing manifest: API error (500): Cannot start container dcb1b5125bd47c6ebc99fd6338166c716ce184ce1b76fe62a5e0b7a1be2fa13c: port has already been allocated
Jul 15 16:56:07 localhost kubelet[418]: skipping.
Jul 15 16:56:07 localhost docker[543]: 2014/07/15 16:56:07 GET /containers/json
Jul 15 16:56:07 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:56:07 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:56:07 localhost proxy[423]: I0715 16:56:07.913791 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:07 localhost proxy[423]: I0715 16:56:07.913856 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:07 localhost proxy[423]: I0715 16:56:07.913872 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:07 localhost proxy[423]: I0715 16:56:07.915454 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:07 localhost proxy[423]: I0715 16:56:07.915454 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:07 localhost proxy[423]: E0715 16:56:07.915454 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:07 localhost proxy[423]: E0715 16:56:07.915454 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:09 localhost proxy[423]: I0715 16:56:09.917340 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:09 localhost proxy[423]: I0715 16:56:09.917408 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:09 localhost proxy[423]: I0715 16:56:09.917424 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:09 localhost proxy[423]: I0715 16:56:09.919384 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:09 localhost proxy[423]: I0715 16:56:09.919523 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:09 localhost proxy[423]: E0715 16:56:09.919559 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:09 localhost proxy[423]: E0715 16:56:09.919576 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:11 localhost apiserver[416]: I0715 16:56:11.097511 00416 logger.go:111] GET /api/v1beta1/operations/2: (40.218us) 202
Jul 15 16:56:11 localhost kubelet[418]: I0715 16:56:11.696188 00418 logs.go:38] etcd DEBUG: [send.request is cancelled]
Jul 15 16:56:11 localhost kubelet[418]: I0715 16:56:11.696334 00418 logs.go:38] etcd DEBUG: get [registry/hosts/127.0.0.1/kubelet http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:11 localhost kubelet[418]: I0715 16:56:11.696360 00418 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:11 localhost kubelet[418]: I0715 16:56:11.696368 00418 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:11 localhost kubelet[418]: I0715 16:56:11.701405 00418 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:11 localhost kubelet[418]: I0715 16:56:11.704123 00418 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:11 localhost kubelet[418]: I0715 16:56:11.704740 00418 kubelet.go:576] Got state from etcd: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol: HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:56:11 localhost kubelet[418]: I0715 16:56:11.704830 00418 logs.go:38] etcd DEBUG: watch [registry/hosts/127.0.0.1/kubelet http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:11 localhost kubelet[418]: I0715 16:56:11.704855 00418 logs.go:38] etcd DEBUG: get [registry/hosts/127.0.0.1/kubelet http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:11 localhost kubelet[418]: I0715 16:56:11.704875 00418 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=true&wait=true]
Jul 15 16:56:11 localhost kubelet[418]: I0715 16:56:11.704884 00418 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=true&wait=true | method GET]
Jul 15 16:56:11 localhost kubelet[418]: I0715 16:56:11.704924 00418 kubelet.go:837] Got configuration from etcd: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol: HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:56:11 localhost kubelet[418]: W0715 16:56:11.704992 00418 kubelet.go:862] Manifest from etcd failed validation, ignoring: [ContainerManifest.Version: invalid value '' Container.Name: invalid value '']
Jul 15 16:56:11 localhost kubelet[418]: I0715 16:56:11.705005 00418 kubelet.go:756] Desired: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol:TCP HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:56:11 localhost kubelet[418]: I0715 16:56:11.713898 00418 kubelet.go:696] Network container doesn't exist, creating
Jul 15 16:56:11 localhost docker[543]: 2014/07/15 16:56:11 GET /containers/json
Jul 15 16:56:11 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:56:11 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:56:11 localhost docker[543]: 2014/07/15 16:56:11 POST /images/create?fromImage=busybox
Jul 15 16:56:11 localhost docker[543]: [7c82844d] +job pull(busybox, )
Jul 15 16:56:11 localhost proxy[423]: I0715 16:56:11.919881 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:11 localhost proxy[423]: I0715 16:56:11.919932 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:11 localhost proxy[423]: I0715 16:56:11.919942 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:11 localhost proxy[423]: I0715 16:56:11.920312 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:11 localhost proxy[423]: I0715 16:56:11.921104 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:11 localhost proxy[423]: E0715 16:56:11.921131 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:11 localhost proxy[423]: E0715 16:56:11.921142 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:12 localhost proxy[423]: E0715 16:56:12.028444 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:56:12 localhost docker[543]: 2014/07/15 16:56:12 GET /containers/json
Jul 15 16:56:12 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:56:12 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:56:12 localhost kubelet[418]: I0715 16:56:12.323812 00418 logger.go:111] GET /podInfo?podID=9acb0442: (13.06034ms) 200
Jul 15 16:56:13 localhost proxy[423]: I0715 16:56:13.921701 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:13 localhost proxy[423]: I0715 16:56:13.921768 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:13 localhost proxy[423]: I0715 16:56:13.921784 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:13 localhost proxy[423]: I0715 16:56:13.922281 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:13 localhost proxy[423]: I0715 16:56:13.922317 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:13 localhost proxy[423]: E0715 16:56:13.922351 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:13 localhost proxy[423]: E0715 16:56:13.922368 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:15 localhost docker[543]: [7c82844d] -job pull(busybox, ) = OK (0)
Jul 15 16:56:15 localhost docker[543]: 2014/07/15 16:56:15 POST /containers/create?name=k8s--net--9acb0442--c6c1f959
Jul 15 16:56:15 localhost docker[543]: [7c82844d] +job create(k8s--net--9acb0442--c6c1f959)
Jul 15 16:56:15 localhost docker[543]: [7c82844d] -job create(k8s--net--9acb0442--c6c1f959) = OK (0)
Jul 15 16:56:15 localhost docker[543]: 2014/07/15 16:56:15 POST /containers/5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b/start
Jul 15 16:56:15 localhost docker[543]: [7c82844d] +job start(5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b)
Jul 15 16:56:15 localhost docker[543]: [7c82844d] +job allocate_interface(5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b)
Jul 15 16:56:15 localhost docker[543]: [7c82844d] -job allocate_interface(5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b) = OK (0)
Jul 15 16:56:15 localhost docker[543]: [7c82844d] +job allocate_port(5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b)
Jul 15 16:56:15 localhost docker[543]: port has already been allocated
Jul 15 16:56:15 localhost docker[543]: [7c82844d] -job allocate_port(5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b) = ERR (1)
Jul 15 16:56:15 localhost docker[543]: [7c82844d] +job release_interface(5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b)
Jul 15 16:56:15 localhost docker[543]: [7c82844d] -job release_interface(5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b) = OK (0)
Jul 15 16:56:15 localhost docker[543]: [7c82844d] +job release_interface(5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b)
Jul 15 16:56:15 localhost docker[543]: [7c82844d] -job release_interface(5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b) = OK (0)
Jul 15 16:56:15 localhost docker[543]: Cannot start container 5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b: port has already been allocated
Jul 15 16:56:15 localhost docker[543]: [7c82844d] -job start(5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b) = ERR (1)
Jul 15 16:56:15 localhost docker[543]: [error] server.go:1025 Error: Cannot start container 5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b: port has already been allocated
Jul 15 16:56:15 localhost docker[543]: [error] server.go:90 HTTP Error: statusCode=500 Cannot start container 5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b: port has already been allocated
Jul 15 16:56:15 localhost kubelet[418]: E0715 16:56:15.534004 00418 kubelet.go:699] Failed to introspect network container. (API error (500): Cannot start container 5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b: port has already been allocated
Jul 15 16:56:15 localhost kubelet[418]: ) Skipping manifest 9acb0442
Jul 15 16:56:15 localhost kubelet[418]: E0715 16:56:15.534039 00418 kubelet.go:772] Error syncing manifest: API error (500): Cannot start container 5b2d53a56c342bb8caaaa416a086370ebe71cff53c5a85b5a087b3c9be7a242b: port has already been allocated
Jul 15 16:56:15 localhost kubelet[418]: skipping.
Jul 15 16:56:15 localhost docker[543]: 2014/07/15 16:56:15 GET /containers/json
Jul 15 16:56:15 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:56:15 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:56:15 localhost proxy[423]: I0715 16:56:15.923772 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:15 localhost proxy[423]: I0715 16:56:15.923835 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:15 localhost proxy[423]: I0715 16:56:15.923848 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:15 localhost proxy[423]: I0715 16:56:15.924218 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:15 localhost proxy[423]: I0715 16:56:15.924243 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:15 localhost proxy[423]: E0715 16:56:15.924275 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:15 localhost proxy[423]: E0715 16:56:15.924290 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:16 localhost apiserver[416]: I0715 16:56:16.158972 00416 logger.go:111] GET /api/v1beta1/operations/5: (26.479us) 202
Jul 15 16:56:17 localhost proxy[423]: E0715 16:56:17.030081 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:56:17 localhost proxy[423]: I0715 16:56:17.926163 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:17 localhost proxy[423]: I0715 16:56:17.926232 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:17 localhost proxy[423]: I0715 16:56:17.926248 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:17 localhost proxy[423]: I0715 16:56:17.926595 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:17 localhost proxy[423]: I0715 16:56:17.926860 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:17 localhost proxy[423]: E0715 16:56:17.926900 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:17 localhost proxy[423]: E0715 16:56:17.926918 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:19 localhost proxy[423]: I0715 16:56:19.928905 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:19 localhost proxy[423]: I0715 16:56:19.928966 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:19 localhost proxy[423]: I0715 16:56:19.928980 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:19 localhost proxy[423]: I0715 16:56:19.929421 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:19 localhost proxy[423]: I0715 16:56:19.929535 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:19 localhost proxy[423]: E0715 16:56:19.929567 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:19 localhost proxy[423]: E0715 16:56:19.929581 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:21 localhost proxy[423]: I0715 16:56:21.930380 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:21 localhost proxy[423]: I0715 16:56:21.930451 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:21 localhost proxy[423]: I0715 16:56:21.930467 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:21 localhost proxy[423]: I0715 16:56:21.932495 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:21 localhost proxy[423]: I0715 16:56:21.933339 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:21 localhost proxy[423]: E0715 16:56:21.933378 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:21 localhost proxy[423]: E0715 16:56:21.933396 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:22 localhost proxy[423]: E0715 16:56:22.030387 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:56:23 localhost proxy[423]: I0715 16:56:23.935053 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:23 localhost proxy[423]: I0715 16:56:23.935114 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:23 localhost proxy[423]: I0715 16:56:23.935127 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:23 localhost proxy[423]: I0715 16:56:23.936470 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:23 localhost proxy[423]: I0715 16:56:23.937245 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:23 localhost proxy[423]: E0715 16:56:23.937288 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:23 localhost proxy[423]: E0715 16:56:23.937306 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:25 localhost kubelet[418]: W0715 16:56:25.548557 00418 kubelet.go:862] Manifest from etcd failed validation, ignoring: [ContainerManifest.Version: invalid value '' Container.Name: invalid value '']
Jul 15 16:56:25 localhost kubelet[418]: I0715 16:56:25.548619 00418 kubelet.go:756] Desired: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol:TCP HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:56:25 localhost docker[543]: 2014/07/15 16:56:25 GET /containers/json
Jul 15 16:56:25 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:56:25 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:56:25 localhost kubelet[418]: I0715 16:56:25.559393 00418 kubelet.go:696] Network container doesn't exist, creating
Jul 15 16:56:25 localhost docker[543]: 2014/07/15 16:56:25 POST /images/create?fromImage=busybox
Jul 15 16:56:25 localhost docker[543]: [7c82844d] +job pull(busybox, )
Jul 15 16:56:25 localhost proxy[423]: I0715 16:56:25.937751 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:25 localhost proxy[423]: I0715 16:56:25.937815 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:25 localhost proxy[423]: I0715 16:56:25.937829 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:25 localhost proxy[423]: I0715 16:56:25.939105 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:25 localhost proxy[423]: I0715 16:56:25.939136 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:25 localhost proxy[423]: E0715 16:56:25.939166 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:25 localhost proxy[423]: E0715 16:56:25.939181 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:27 localhost proxy[423]: E0715 16:56:27.030595 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:56:27 localhost proxy[423]: I0715 16:56:27.939760 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:27 localhost proxy[423]: I0715 16:56:27.939842 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:27 localhost proxy[423]: I0715 16:56:27.939860 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:27 localhost proxy[423]: I0715 16:56:27.941175 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:27 localhost proxy[423]: I0715 16:56:27.941201 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:27 localhost proxy[423]: E0715 16:56:27.941232 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:27 localhost proxy[423]: E0715 16:56:27.941247 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:29 localhost proxy[423]: I0715 16:56:29.941735 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:29 localhost proxy[423]: I0715 16:56:29.941787 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:29 localhost proxy[423]: I0715 16:56:29.941796 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:29 localhost proxy[423]: I0715 16:56:29.943032 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:29 localhost proxy[423]: I0715 16:56:29.943049 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:29 localhost proxy[423]: E0715 16:56:29.943072 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:29 localhost proxy[423]: E0715 16:56:29.943083 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:30 localhost docker[543]: [7c82844d] -job pull(busybox, ) = OK (0)
Jul 15 16:56:30 localhost docker[543]: 2014/07/15 16:56:30 POST /containers/create?name=k8s--net--9acb0442--1b6a34ad
Jul 15 16:56:30 localhost docker[543]: [7c82844d] +job create(k8s--net--9acb0442--1b6a34ad)
Jul 15 16:56:30 localhost docker[543]: [7c82844d] -job create(k8s--net--9acb0442--1b6a34ad) = OK (0)
Jul 15 16:56:30 localhost docker[543]: 2014/07/15 16:56:30 POST /containers/2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6/start
Jul 15 16:56:30 localhost docker[543]: [7c82844d] +job start(2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6)
Jul 15 16:56:30 localhost docker[543]: [7c82844d] +job allocate_interface(2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6)
Jul 15 16:56:30 localhost docker[543]: [7c82844d] -job allocate_interface(2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6) = OK (0)
Jul 15 16:56:30 localhost docker[543]: [7c82844d] +job allocate_port(2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6)
Jul 15 16:56:30 localhost docker[543]: port has already been allocated
Jul 15 16:56:30 localhost docker[543]: [7c82844d] -job allocate_port(2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6) = ERR (1)
Jul 15 16:56:30 localhost docker[543]: [7c82844d] +job release_interface(2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6)
Jul 15 16:56:30 localhost docker[543]: [7c82844d] -job release_interface(2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6) = OK (0)
Jul 15 16:56:30 localhost docker[543]: [7c82844d] +job release_interface(2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6)
Jul 15 16:56:30 localhost docker[543]: [7c82844d] -job release_interface(2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6) = OK (0)
Jul 15 16:56:30 localhost docker[543]: Cannot start container 2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6: port has already been allocated
Jul 15 16:56:30 localhost docker[543]: [7c82844d] -job start(2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6) = ERR (1)
Jul 15 16:56:30 localhost docker[543]: [error] server.go:1025 Error: Cannot start container 2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6: port has already been allocated
Jul 15 16:56:30 localhost docker[543]: [error] server.go:90 HTTP Error: statusCode=500 Cannot start container 2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6: port has already been allocated
Jul 15 16:56:30 localhost kubelet[418]: E0715 16:56:30.923001 00418 kubelet.go:699] Failed to introspect network container. (API error (500): Cannot start container 2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6: port has already been allocated
Jul 15 16:56:30 localhost kubelet[418]: ) Skipping manifest 9acb0442
Jul 15 16:56:30 localhost kubelet[418]: E0715 16:56:30.923030 00418 kubelet.go:772] Error syncing manifest: API error (500): Cannot start container 2f853212f4fc26492de3b8489b071945dd26a6fed8c1e4816e835d7b3cd682b6: port has already been allocated
Jul 15 16:56:30 localhost kubelet[418]: skipping.
Jul 15 16:56:30 localhost docker[543]: 2014/07/15 16:56:30 GET /containers/json
Jul 15 16:56:30 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:56:30 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:56:31 localhost apiserver[416]: I0715 16:56:31.099412 00416 logger.go:111] GET /api/v1beta1/operations/2: (24.865us) 202
Jul 15 16:56:31 localhost proxy[423]: I0715 16:56:31.944924 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:31 localhost proxy[423]: I0715 16:56:31.944990 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:31 localhost proxy[423]: I0715 16:56:31.945007 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:31 localhost proxy[423]: I0715 16:56:31.947468 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:31 localhost proxy[423]: I0715 16:56:31.947807 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:31 localhost proxy[423]: E0715 16:56:31.947863 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:31 localhost proxy[423]: E0715 16:56:31.947882 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:32 localhost proxy[423]: E0715 16:56:32.031774 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:56:33 localhost proxy[423]: I0715 16:56:33.948533 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:33 localhost proxy[423]: I0715 16:56:33.948621 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:33 localhost proxy[423]: I0715 16:56:33.948642 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:33 localhost proxy[423]: I0715 16:56:33.951956 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:33 localhost proxy[423]: I0715 16:56:33.953170 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:33 localhost proxy[423]: E0715 16:56:33.953201 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:33 localhost proxy[423]: E0715 16:56:33.953215 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:35 localhost proxy[423]: I0715 16:56:35.953745 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:35 localhost proxy[423]: I0715 16:56:35.953814 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:35 localhost proxy[423]: I0715 16:56:35.953830 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:35 localhost proxy[423]: I0715 16:56:35.957800 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:35 localhost proxy[423]: I0715 16:56:35.958315 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:35 localhost proxy[423]: E0715 16:56:35.958351 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:35 localhost proxy[423]: E0715 16:56:35.958367 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:36 localhost apiserver[416]: I0715 16:56:36.162307 00416 logger.go:111] GET /api/v1beta1/operations/5: (29.944us) 202
Jul 15 16:56:37 localhost proxy[423]: E0715 16:56:37.032240 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:56:37 localhost proxy[423]: I0715 16:56:37.960158 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:37 localhost proxy[423]: I0715 16:56:37.960225 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:37 localhost proxy[423]: I0715 16:56:37.960242 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:37 localhost proxy[423]: I0715 16:56:37.963448 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:37 localhost proxy[423]: I0715 16:56:37.963873 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:37 localhost proxy[423]: E0715 16:56:37.963908 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:37 localhost proxy[423]: E0715 16:56:37.963923 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:39 localhost proxy[423]: I0715 16:56:39.966045 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:39 localhost proxy[423]: I0715 16:56:39.966113 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:39 localhost proxy[423]: I0715 16:56:39.966129 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:39 localhost proxy[423]: I0715 16:56:39.969472 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:39 localhost proxy[423]: I0715 16:56:39.969939 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:39 localhost proxy[423]: E0715 16:56:39.969975 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:39 localhost proxy[423]: E0715 16:56:39.969992 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:40 localhost kubelet[418]: W0715 16:56:40.934412 00418 kubelet.go:862] Manifest from etcd failed validation, ignoring: [ContainerManifest.Version: invalid value '' Container.Name: invalid value '']
Jul 15 16:56:40 localhost kubelet[418]: I0715 16:56:40.934477 00418 kubelet.go:756] Desired: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol:TCP HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:56:40 localhost docker[543]: 2014/07/15 16:56:40 GET /containers/json
Jul 15 16:56:40 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:56:40 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:56:40 localhost kubelet[418]: I0715 16:56:40.946542 00418 kubelet.go:696] Network container doesn't exist, creating
Jul 15 16:56:40 localhost docker[543]: 2014/07/15 16:56:40 POST /images/create?fromImage=busybox
Jul 15 16:56:40 localhost docker[543]: [7c82844d] +job pull(busybox, )
Jul 15 16:56:41 localhost kubelet[418]: I0715 16:56:41.695332 00418 logs.go:38] etcd DEBUG: [send.request is cancelled]
Jul 15 16:56:41 localhost kubelet[418]: I0715 16:56:41.695516 00418 logs.go:38] etcd DEBUG: get [registry/hosts/127.0.0.1/kubelet http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:41 localhost kubelet[418]: I0715 16:56:41.695556 00418 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:41 localhost kubelet[418]: I0715 16:56:41.695572 00418 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:41 localhost kubelet[418]: I0715 16:56:41.699363 00418 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:41 localhost kubelet[418]: I0715 16:56:41.700449 00418 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:41 localhost kubelet[418]: I0715 16:56:41.700623 00418 kubelet.go:576] Got state from etcd: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol: HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:56:41 localhost proxy[423]: I0715 16:56:41.971520 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:41 localhost proxy[423]: I0715 16:56:41.971589 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:41 localhost proxy[423]: I0715 16:56:41.971605 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:41 localhost proxy[423]: I0715 16:56:41.974556 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:41 localhost proxy[423]: I0715 16:56:41.974651 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:41 localhost proxy[423]: E0715 16:56:41.974684 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:41 localhost proxy[423]: E0715 16:56:41.974699 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:42 localhost proxy[423]: E0715 16:56:42.033495 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:56:42 localhost docker[543]: 2014/07/15 16:56:42 GET /containers/json
Jul 15 16:56:42 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:56:42 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:56:42 localhost kubelet[418]: I0715 16:56:42.336254 00418 logger.go:111] GET /podInfo?podID=9acb0442: (8.678472ms) 200
Jul 15 16:56:43 localhost proxy[423]: I0715 16:56:43.975416 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:43 localhost proxy[423]: I0715 16:56:43.975484 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:43 localhost proxy[423]: I0715 16:56:43.975500 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:43 localhost proxy[423]: I0715 16:56:43.977239 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:43 localhost proxy[423]: I0715 16:56:43.977266 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:43 localhost proxy[423]: E0715 16:56:43.977307 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:43 localhost proxy[423]: E0715 16:56:43.977324 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:45 localhost proxy[423]: I0715 16:56:45.977699 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:45 localhost proxy[423]: I0715 16:56:45.977758 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:45 localhost proxy[423]: I0715 16:56:45.977773 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:45 localhost proxy[423]: I0715 16:56:45.979975 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:45 localhost proxy[423]: I0715 16:56:45.980168 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:45 localhost proxy[423]: E0715 16:56:45.980198 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:45 localhost proxy[423]: E0715 16:56:45.980212 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:46 localhost docker[543]: [7c82844d] -job pull(busybox, ) = OK (0)
Jul 15 16:56:46 localhost docker[543]: 2014/07/15 16:56:46 POST /containers/create?name=k8s--net--9acb0442--797f1a89
Jul 15 16:56:46 localhost docker[543]: [7c82844d] +job create(k8s--net--9acb0442--797f1a89)
Jul 15 16:56:47 localhost proxy[423]: E0715 16:56:47.033712 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:56:47 localhost docker[543]: [7c82844d] -job create(k8s--net--9acb0442--797f1a89) = OK (0)
Jul 15 16:56:47 localhost docker[543]: 2014/07/15 16:56:47 POST /containers/e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d/start
Jul 15 16:56:47 localhost docker[543]: [7c82844d] +job start(e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d)
Jul 15 16:56:47 localhost docker[543]: [7c82844d] +job allocate_interface(e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d)
Jul 15 16:56:47 localhost docker[543]: [7c82844d] -job allocate_interface(e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d) = OK (0)
Jul 15 16:56:47 localhost docker[543]: [7c82844d] +job allocate_port(e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d)
Jul 15 16:56:47 localhost docker[543]: port has already been allocated
Jul 15 16:56:47 localhost docker[543]: [7c82844d] -job allocate_port(e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d) = ERR (1)
Jul 15 16:56:47 localhost docker[543]: [7c82844d] +job release_interface(e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d)
Jul 15 16:56:47 localhost docker[543]: [7c82844d] -job release_interface(e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d) = OK (0)
Jul 15 16:56:47 localhost docker[543]: [7c82844d] +job release_interface(e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d)
Jul 15 16:56:47 localhost docker[543]: [7c82844d] -job release_interface(e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d) = OK (0)
Jul 15 16:56:47 localhost docker[543]: Cannot start container e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d: port has already been allocated
Jul 15 16:56:47 localhost kubelet[418]: E0715 16:56:47.066347 00418 kubelet.go:699] Failed to introspect network container. (API error (500): Cannot start container e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d: port has already been allocated
Jul 15 16:56:47 localhost kubelet[418]: ) Skipping manifest 9acb0442
Jul 15 16:56:47 localhost kubelet[418]: E0715 16:56:47.066374 00418 kubelet.go:772] Error syncing manifest: API error (500): Cannot start container e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d: port has already been allocated
Jul 15 16:56:47 localhost kubelet[418]: skipping.
Jul 15 16:56:47 localhost docker[543]: [7c82844d] -job start(e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d) = ERR (1)
Jul 15 16:56:47 localhost docker[543]: [error] server.go:1025 Error: Cannot start container e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d: port has already been allocated
Jul 15 16:56:47 localhost docker[543]: [error] server.go:90 HTTP Error: statusCode=500 Cannot start container e1035998ec449462b8b265be5da3367f352931c464ff85ea8f68e3429c7c761d: port has already been allocated
Jul 15 16:56:47 localhost docker[543]: 2014/07/15 16:56:47 GET /containers/json
Jul 15 16:56:47 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:56:47 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:56:47 localhost kubelet[418]: I0715 16:56:47.077157 00418 kubelet.go:837] Got configuration from etcd: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol: HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:56:47 localhost kubelet[418]: W0715 16:56:47.077229 00418 kubelet.go:862] Manifest from etcd failed validation, ignoring: [ContainerManifest.Version: invalid value '' Container.Name: invalid value '']
Jul 15 16:56:47 localhost kubelet[418]: I0715 16:56:47.077243 00418 kubelet.go:756] Desired: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol:TCP HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:56:47 localhost kubelet[418]: I0715 16:56:47.077274 00418 logs.go:38] etcd DEBUG: watch [registry/hosts/127.0.0.1/kubelet http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:47 localhost kubelet[418]: I0715 16:56:47.077285 00418 logs.go:38] etcd DEBUG: get [registry/hosts/127.0.0.1/kubelet http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:47 localhost kubelet[418]: I0715 16:56:47.077305 00418 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=true&wait=true]
Jul 15 16:56:47 localhost kubelet[418]: I0715 16:56:47.077317 00418 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=true&wait=true | method GET]
Jul 15 16:56:47 localhost docker[543]: 2014/07/15 16:56:47 GET /containers/json
Jul 15 16:56:47 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:56:47 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:56:47 localhost kubelet[418]: I0715 16:56:47.087524 00418 kubelet.go:696] Network container doesn't exist, creating
Jul 15 16:56:47 localhost docker[543]: 2014/07/15 16:56:47 POST /images/create?fromImage=busybox
Jul 15 16:56:47 localhost docker[543]: [7c82844d] +job pull(busybox, )
Jul 15 16:56:47 localhost proxy[423]: I0715 16:56:47.981193 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:47 localhost proxy[423]: I0715 16:56:47.981261 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:47 localhost proxy[423]: I0715 16:56:47.981278 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:47 localhost proxy[423]: I0715 16:56:47.983613 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:47 localhost proxy[423]: I0715 16:56:47.983643 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:47 localhost proxy[423]: E0715 16:56:47.983675 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:47 localhost proxy[423]: E0715 16:56:47.983690 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:49 localhost proxy[423]: I0715 16:56:49.983960 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:49 localhost proxy[423]: I0715 16:56:49.984011 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:49 localhost proxy[423]: I0715 16:56:49.984023 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:49 localhost proxy[423]: I0715 16:56:49.985258 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:49 localhost proxy[423]: I0715 16:56:49.985279 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:49 localhost proxy[423]: E0715 16:56:49.985308 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:49 localhost proxy[423]: E0715 16:56:49.985320 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:50 localhost docker[543]: [7c82844d] -job pull(busybox, ) = OK (0)
Jul 15 16:56:50 localhost docker[543]: 2014/07/15 16:56:50 POST /containers/create?name=k8s--net--9acb0442--874ab5fd
Jul 15 16:56:50 localhost docker[543]: [7c82844d] +job create(k8s--net--9acb0442--874ab5fd)
Jul 15 16:56:50 localhost docker[543]: [7c82844d] -job create(k8s--net--9acb0442--874ab5fd) = OK (0)
Jul 15 16:56:50 localhost docker[543]: 2014/07/15 16:56:50 POST /containers/75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c/start
Jul 15 16:56:50 localhost docker[543]: [7c82844d] +job start(75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c)
Jul 15 16:56:50 localhost docker[543]: [7c82844d] +job allocate_interface(75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c)
Jul 15 16:56:50 localhost docker[543]: [7c82844d] -job allocate_interface(75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c) = OK (0)
Jul 15 16:56:50 localhost docker[543]: [7c82844d] +job allocate_port(75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c)
Jul 15 16:56:50 localhost docker[543]: port has already been allocated
Jul 15 16:56:50 localhost docker[543]: [7c82844d] -job allocate_port(75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c) = ERR (1)
Jul 15 16:56:50 localhost docker[543]: [7c82844d] +job release_interface(75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c)
Jul 15 16:56:50 localhost docker[543]: [7c82844d] -job release_interface(75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c) = OK (0)
Jul 15 16:56:50 localhost kubelet[418]: E0715 16:56:50.448828 00418 kubelet.go:699] Failed to introspect network container. (API error (500): Cannot start container 75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c: port has already been allocated
Jul 15 16:56:50 localhost kubelet[418]: ) Skipping manifest 9acb0442
Jul 15 16:56:50 localhost kubelet[418]: E0715 16:56:50.448875 00418 kubelet.go:772] Error syncing manifest: API error (500): Cannot start container 75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c: port has already been allocated
Jul 15 16:56:50 localhost kubelet[418]: skipping.
Jul 15 16:56:50 localhost docker[543]: [7c82844d] +job release_interface(75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c)
Jul 15 16:56:50 localhost docker[543]: [7c82844d] -job release_interface(75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c) = OK (0)
Jul 15 16:56:50 localhost docker[543]: Cannot start container 75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c: port has already been allocated
Jul 15 16:56:50 localhost docker[543]: [7c82844d] -job start(75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c) = ERR (1)
Jul 15 16:56:50 localhost docker[543]: [error] server.go:1025 Error: Cannot start container 75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c: port has already been allocated
Jul 15 16:56:50 localhost docker[543]: [error] server.go:90 HTTP Error: statusCode=500 Cannot start container 75d539d73f9528f892faa5d33f12113a1c2488e439e53adc8d6d7feeb6e05c6c: port has already been allocated
Jul 15 16:56:50 localhost docker[543]: 2014/07/15 16:56:50 GET /containers/json
Jul 15 16:56:50 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:56:50 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:56:51 localhost apiserver[416]: I0715 16:56:51.102486 00416 logger.go:111] GET /api/v1beta1/operations/2: (44.214us) 202
Jul 15 16:56:51 localhost proxy[423]: I0715 16:56:51.987490 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:51 localhost proxy[423]: I0715 16:56:51.987560 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:51 localhost proxy[423]: I0715 16:56:51.987575 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:51 localhost proxy[423]: I0715 16:56:51.988090 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:51 localhost proxy[423]: I0715 16:56:51.988207 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:51 localhost proxy[423]: E0715 16:56:51.988244 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:51 localhost proxy[423]: E0715 16:56:51.988261 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:52 localhost proxy[423]: E0715 16:56:52.033981 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:56:53 localhost proxy[423]: I0715 16:56:53.989648 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:53 localhost proxy[423]: I0715 16:56:53.989716 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:53 localhost proxy[423]: I0715 16:56:53.989732 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:53 localhost proxy[423]: I0715 16:56:53.990235 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:53 localhost proxy[423]: I0715 16:56:53.990351 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:53 localhost proxy[423]: E0715 16:56:53.990389 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:53 localhost proxy[423]: E0715 16:56:53.990405 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:55 localhost proxy[423]: I0715 16:56:55.991246 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:55 localhost proxy[423]: I0715 16:56:55.991311 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:55 localhost proxy[423]: I0715 16:56:55.991328 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:55 localhost proxy[423]: I0715 16:56:55.993350 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:55 localhost proxy[423]: I0715 16:56:55.994194 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:55 localhost proxy[423]: E0715 16:56:55.994233 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:55 localhost proxy[423]: E0715 16:56:55.994250 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:56 localhost apiserver[416]: I0715 16:56:56.165736 00416 logger.go:111] GET /api/v1beta1/operations/5: (40.825us) 202
Jul 15 16:56:57 localhost proxy[423]: E0715 16:56:57.035390 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:56:57 localhost proxy[423]: I0715 16:56:57.994680 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:56:57 localhost proxy[423]: I0715 16:56:57.994745 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:57 localhost proxy[423]: I0715 16:56:57.994761 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:56:57 localhost proxy[423]: I0715 16:56:57.996437 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:57 localhost proxy[423]: I0715 16:56:57.996551 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:56:58 localhost proxy[423]: E0715 16:56:57.996589 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:58 localhost proxy[423]: E0715 16:56:57.996606 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:56:59 localhost proxy[423]: I0715 16:56:59.997997 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:00 localhost proxy[423]: I0715 16:56:59.998068 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:00 localhost proxy[423]: I0715 16:56:59.998085 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:00 localhost proxy[423]: I0715 16:57:00.000840 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:00 localhost proxy[423]: I0715 16:57:00.001784 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:00 localhost proxy[423]: E0715 16:57:00.001821 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:00 localhost proxy[423]: E0715 16:57:00.001837 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:00 localhost kubelet[418]: W0715 16:57:00.466230 00418 kubelet.go:862] Manifest from etcd failed validation, ignoring: [ContainerManifest.Version: invalid value '' Container.Name: invalid value '']
Jul 15 16:57:00 localhost kubelet[418]: I0715 16:57:00.466290 00418 kubelet.go:756] Desired: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol:TCP HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:57:00 localhost kubelet[418]: I0715 16:57:00.473465 00418 kubelet.go:696] Network container doesn't exist, creating
Jul 15 16:57:00 localhost docker[543]: 2014/07/15 16:57:00 GET /containers/json
Jul 15 16:57:00 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:57:00 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:57:00 localhost docker[543]: 2014/07/15 16:57:00 POST /images/create?fromImage=busybox
Jul 15 16:57:00 localhost docker[543]: [7c82844d] +job pull(busybox, )
Jul 15 16:57:02 localhost proxy[423]: I0715 16:57:02.002231 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:02 localhost proxy[423]: I0715 16:57:02.002300 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:02 localhost proxy[423]: I0715 16:57:02.002318 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:02 localhost proxy[423]: I0715 16:57:02.005619 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:02 localhost proxy[423]: I0715 16:57:02.005655 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:02 localhost proxy[423]: E0715 16:57:02.005690 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:02 localhost proxy[423]: E0715 16:57:02.005707 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:02 localhost proxy[423]: E0715 16:57:02.037216 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:57:04 localhost proxy[423]: I0715 16:57:04.006233 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:04 localhost proxy[423]: I0715 16:57:04.006308 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:04 localhost proxy[423]: I0715 16:57:04.006325 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:04 localhost proxy[423]: I0715 16:57:04.008122 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:04 localhost proxy[423]: I0715 16:57:04.008163 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:04 localhost proxy[423]: E0715 16:57:04.008199 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:04 localhost proxy[423]: E0715 16:57:04.008216 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:04 localhost docker[543]: [7c82844d] -job pull(busybox, ) = OK (0)
Jul 15 16:57:04 localhost docker[543]: 2014/07/15 16:57:04 POST /containers/create?name=k8s--net--9acb0442--282fc3d4
Jul 15 16:57:04 localhost docker[543]: [7c82844d] +job create(k8s--net--9acb0442--282fc3d4)
Jul 15 16:57:04 localhost docker[543]: [7c82844d] -job create(k8s--net--9acb0442--282fc3d4) = OK (0)
Jul 15 16:57:04 localhost docker[543]: 2014/07/15 16:57:04 POST /containers/89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2/start
Jul 15 16:57:04 localhost docker[543]: [7c82844d] +job start(89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2)
Jul 15 16:57:04 localhost docker[543]: [7c82844d] +job allocate_interface(89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2)
Jul 15 16:57:04 localhost docker[543]: [7c82844d] -job allocate_interface(89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2) = OK (0)
Jul 15 16:57:04 localhost docker[543]: [7c82844d] +job allocate_port(89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2)
Jul 15 16:57:04 localhost docker[543]: port has already been allocated
Jul 15 16:57:04 localhost docker[543]: [7c82844d] -job allocate_port(89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2) = ERR (1)
Jul 15 16:57:04 localhost kubelet[418]: E0715 16:57:04.365263 00418 kubelet.go:699] Failed to introspect network container. (API error (500): Cannot start container 89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2: port has already been allocated
Jul 15 16:57:04 localhost kubelet[418]: ) Skipping manifest 9acb0442
Jul 15 16:57:04 localhost kubelet[418]: E0715 16:57:04.365291 00418 kubelet.go:772] Error syncing manifest: API error (500): Cannot start container 89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2: port has already been allocated
Jul 15 16:57:04 localhost kubelet[418]: skipping.
Jul 15 16:57:04 localhost docker[543]: [7c82844d] +job release_interface(89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2)
Jul 15 16:57:04 localhost docker[543]: [7c82844d] -job release_interface(89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2) = OK (0)
Jul 15 16:57:04 localhost docker[543]: [7c82844d] +job release_interface(89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2)
Jul 15 16:57:04 localhost docker[543]: [7c82844d] -job release_interface(89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2) = OK (0)
Jul 15 16:57:04 localhost docker[543]: Cannot start container 89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2: port has already been allocated
Jul 15 16:57:04 localhost docker[543]: [7c82844d] -job start(89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2) = ERR (1)
Jul 15 16:57:04 localhost docker[543]: [error] server.go:1025 Error: Cannot start container 89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2: port has already been allocated
Jul 15 16:57:04 localhost docker[543]: [error] server.go:90 HTTP Error: statusCode=500 Cannot start container 89bff35fa79b423b4f820bff4338341bd992e35b1535f06dee18fe88069350a2: port has already been allocated
Jul 15 16:57:04 localhost docker[543]: 2014/07/15 16:57:04 GET /containers/json
Jul 15 16:57:04 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:57:04 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:57:06 localhost proxy[423]: I0715 16:57:06.009566 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:06 localhost proxy[423]: I0715 16:57:06.009617 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:06 localhost proxy[423]: I0715 16:57:06.009627 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:06 localhost proxy[423]: I0715 16:57:06.010750 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:06 localhost proxy[423]: I0715 16:57:06.012161 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:06 localhost proxy[423]: E0715 16:57:06.012191 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:06 localhost proxy[423]: E0715 16:57:06.012203 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:07 localhost proxy[423]: E0715 16:57:07.037771 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:57:08 localhost proxy[423]: I0715 16:57:08.012685 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:08 localhost proxy[423]: I0715 16:57:08.012750 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:08 localhost proxy[423]: I0715 16:57:08.012765 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:08 localhost proxy[423]: I0715 16:57:08.016105 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:08 localhost proxy[423]: I0715 16:57:08.016727 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:08 localhost proxy[423]: E0715 16:57:08.016764 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:08 localhost proxy[423]: E0715 16:57:08.016780 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:10 localhost proxy[423]: I0715 16:57:10.017399 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:10 localhost proxy[423]: I0715 16:57:10.017463 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:10 localhost proxy[423]: I0715 16:57:10.017479 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:10 localhost proxy[423]: I0715 16:57:10.020522 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:10 localhost proxy[423]: I0715 16:57:10.021404 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:10 localhost proxy[423]: E0715 16:57:10.021442 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:10 localhost proxy[423]: E0715 16:57:10.021457 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:11 localhost apiserver[416]: I0715 16:57:11.104938 00416 logger.go:111] GET /api/v1beta1/operations/2: (25ns) 202
Jul 15 16:57:11 localhost kubelet[418]: I0715 16:57:11.696949 00418 logs.go:38] etcd DEBUG: [send.request is cancelled]
Jul 15 16:57:11 localhost kubelet[418]: I0715 16:57:11.697131 00418 logs.go:38] etcd DEBUG: get [registry/hosts/127.0.0.1/kubelet http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:11 localhost kubelet[418]: I0715 16:57:11.697171 00418 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:11 localhost kubelet[418]: I0715 16:57:11.697186 00418 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:11 localhost kubelet[418]: I0715 16:57:11.701132 00418 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:11 localhost kubelet[418]: I0715 16:57:11.701611 00418 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:11 localhost kubelet[418]: I0715 16:57:11.701817 00418 kubelet.go:576] Got state from etcd: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol: HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:57:11 localhost kubelet[418]: I0715 16:57:11.701909 00418 logs.go:38] etcd DEBUG: watch [registry/hosts/127.0.0.1/kubelet http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:11 localhost kubelet[418]: I0715 16:57:11.701922 00418 logs.go:38] etcd DEBUG: get [registry/hosts/127.0.0.1/kubelet http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:11 localhost kubelet[418]: I0715 16:57:11.701944 00418 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=true&wait=true]
Jul 15 16:57:11 localhost kubelet[418]: I0715 16:57:11.701954 00418 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=true&wait=true | method GET]
Jul 15 16:57:11 localhost kubelet[418]: I0715 16:57:11.701979 00418 kubelet.go:837] Got configuration from etcd: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol: HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:57:11 localhost kubelet[418]: W0715 16:57:11.702506 00418 kubelet.go:862] Manifest from etcd failed validation, ignoring: [ContainerManifest.Version: invalid value '' Container.Name: invalid value '']
Jul 15 16:57:11 localhost docker[543]: 2014/07/15 16:57:11 GET /containers/json
Jul 15 16:57:11 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:57:11 localhost kubelet[418]: I0715 16:57:11.702588 00418 kubelet.go:756] Desired: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol:TCP HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:57:11 localhost kubelet[418]: I0715 16:57:11.713469 00418 kubelet.go:696] Network container doesn't exist, creating
Jul 15 16:57:11 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:57:11 localhost docker[543]: 2014/07/15 16:57:11 POST /images/create?fromImage=busybox
Jul 15 16:57:11 localhost docker[543]: [7c82844d] +job pull(busybox, )
Jul 15 16:57:12 localhost proxy[423]: I0715 16:57:12.021963 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:12 localhost proxy[423]: I0715 16:57:12.022031 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:12 localhost proxy[423]: I0715 16:57:12.022047 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:12 localhost proxy[423]: I0715 16:57:12.024507 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:12 localhost proxy[423]: I0715 16:57:12.025050 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:12 localhost proxy[423]: E0715 16:57:12.025088 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:12 localhost proxy[423]: E0715 16:57:12.025105 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:12 localhost proxy[423]: E0715 16:57:12.038409 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:57:12 localhost docker[543]: 2014/07/15 16:57:12 GET /containers/json
Jul 15 16:57:12 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:57:12 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:57:12 localhost kubelet[418]: I0715 16:57:12.346568 00418 logger.go:111] GET /podInfo?podID=9acb0442: (8.194711ms) 200
Jul 15 16:57:14 localhost proxy[423]: I0715 16:57:14.025424 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:14 localhost proxy[423]: I0715 16:57:14.025851 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:14 localhost proxy[423]: I0715 16:57:14.025851 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:14 localhost proxy[423]: I0715 16:57:14.027482 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:14 localhost proxy[423]: I0715 16:57:14.027503 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:14 localhost proxy[423]: E0715 16:57:14.027533 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:14 localhost proxy[423]: E0715 16:57:14.027545 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:15 localhost docker[543]: [7c82844d] -job pull(busybox, ) = OK (0)
Jul 15 16:57:15 localhost docker[543]: 2014/07/15 16:57:15 POST /containers/create?name=k8s--net--9acb0442--99fe6ee0
Jul 15 16:57:15 localhost docker[543]: [7c82844d] +job create(k8s--net--9acb0442--99fe6ee0)
Jul 15 16:57:15 localhost docker[543]: [7c82844d] -job create(k8s--net--9acb0442--99fe6ee0) = OK (0)
Jul 15 16:57:15 localhost docker[543]: 2014/07/15 16:57:15 POST /containers/d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf/start
Jul 15 16:57:15 localhost docker[543]: [7c82844d] +job start(d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf)
Jul 15 16:57:15 localhost docker[543]: [7c82844d] +job allocate_interface(d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf)
Jul 15 16:57:15 localhost docker[543]: [7c82844d] -job allocate_interface(d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf) = OK (0)
Jul 15 16:57:15 localhost docker[543]: [7c82844d] +job allocate_port(d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf)
Jul 15 16:57:15 localhost docker[543]: port has already been allocated
Jul 15 16:57:15 localhost docker[543]: [7c82844d] -job allocate_port(d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf) = ERR (1)
Jul 15 16:57:15 localhost docker[543]: [7c82844d] +job release_interface(d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf)
Jul 15 16:57:15 localhost docker[543]: [7c82844d] -job release_interface(d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf) = OK (0)
Jul 15 16:57:15 localhost docker[543]: [7c82844d] +job release_interface(d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf)
Jul 15 16:57:15 localhost docker[543]: [7c82844d] -job release_interface(d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf) = OK (0)
Jul 15 16:57:15 localhost docker[543]: Cannot start container d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf: port has already been allocated
Jul 15 16:57:15 localhost docker[543]: [7c82844d] -job start(d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf) = ERR (1)
Jul 15 16:57:15 localhost docker[543]: [error] server.go:1025 Error: Cannot start container d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf: port has already been allocated
Jul 15 16:57:15 localhost docker[543]: [error] server.go:90 HTTP Error: statusCode=500 Cannot start container d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf: port has already been allocated
Jul 15 16:57:15 localhost kubelet[418]: E0715 16:57:15.859121 00418 kubelet.go:699] Failed to introspect network container. (API error (500): Cannot start container d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf: port has already been allocated
Jul 15 16:57:15 localhost kubelet[418]: ) Skipping manifest 9acb0442
Jul 15 16:57:15 localhost kubelet[418]: E0715 16:57:15.859150 00418 kubelet.go:772] Error syncing manifest: API error (500): Cannot start container d39b53438d1288c2ddb57d9ee030bd6fec3fc5bda4bda98044e541fa284515bf: port has already been allocated
Jul 15 16:57:15 localhost kubelet[418]: skipping.
Jul 15 16:57:15 localhost docker[543]: 2014/07/15 16:57:15 GET /containers/json
Jul 15 16:57:15 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:57:15 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:57:16 localhost proxy[423]: I0715 16:57:16.027933 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:16 localhost proxy[423]: I0715 16:57:16.027996 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:16 localhost proxy[423]: I0715 16:57:16.028009 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:16 localhost proxy[423]: I0715 16:57:16.029216 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:16 localhost proxy[423]: I0715 16:57:16.029240 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:16 localhost proxy[423]: E0715 16:57:16.029272 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:16 localhost proxy[423]: E0715 16:57:16.029286 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:16 localhost apiserver[416]: I0715 16:57:16.168366 00416 logger.go:111] GET /api/v1beta1/operations/5: (31.867us) 202
Jul 15 16:57:17 localhost proxy[423]: E0715 16:57:17.038798 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:57:18 localhost proxy[423]: I0715 16:57:18.029796 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:18 localhost proxy[423]: I0715 16:57:18.029865 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:18 localhost proxy[423]: I0715 16:57:18.029880 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:18 localhost proxy[423]: I0715 16:57:18.030394 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:18 localhost proxy[423]: I0715 16:57:18.030507 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:18 localhost proxy[423]: E0715 16:57:18.030545 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:18 localhost proxy[423]: E0715 16:57:18.030561 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:20 localhost proxy[423]: I0715 16:57:20.031143 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:20 localhost proxy[423]: I0715 16:57:20.031216 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:20 localhost proxy[423]: I0715 16:57:20.031235 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:20 localhost proxy[423]: I0715 16:57:20.032192 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:20 localhost proxy[423]: I0715 16:57:20.032297 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:20 localhost proxy[423]: E0715 16:57:20.032333 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:20 localhost proxy[423]: E0715 16:57:20.032350 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:22 localhost proxy[423]: I0715 16:57:22.032867 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:22 localhost proxy[423]: I0715 16:57:22.032918 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:22 localhost proxy[423]: I0715 16:57:22.032927 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:22 localhost proxy[423]: I0715 16:57:22.035595 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:22 localhost proxy[423]: I0715 16:57:22.036819 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:22 localhost proxy[423]: E0715 16:57:22.036971 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:22 localhost proxy[423]: E0715 16:57:22.036989 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:22 localhost proxy[423]: E0715 16:57:22.039225 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:57:24 localhost proxy[423]: I0715 16:57:24.039237 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:24 localhost proxy[423]: I0715 16:57:24.039306 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:24 localhost proxy[423]: I0715 16:57:24.039322 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:24 localhost proxy[423]: I0715 16:57:24.041993 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:24 localhost proxy[423]: I0715 16:57:24.043590 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:24 localhost proxy[423]: E0715 16:57:24.043632 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:24 localhost proxy[423]: E0715 16:57:24.043650 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:25 localhost kubelet[418]: W0715 16:57:25.868795 00418 kubelet.go:862] Manifest from etcd failed validation, ignoring: [ContainerManifest.Version: invalid value '' Container.Name: invalid value '']
Jul 15 16:57:25 localhost kubelet[418]: I0715 16:57:25.868851 00418 kubelet.go:756] Desired: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol:TCP HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:57:25 localhost docker[543]: 2014/07/15 16:57:25 GET /containers/json
Jul 15 16:57:25 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:57:25 localhost kubelet[418]: I0715 16:57:25.877543 00418 kubelet.go:696] Network container doesn't exist, creating
Jul 15 16:57:25 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:57:25 localhost docker[543]: 2014/07/15 16:57:25 POST /images/create?fromImage=busybox
Jul 15 16:57:25 localhost docker[543]: [7c82844d] +job pull(busybox, )
Jul 15 16:57:26 localhost proxy[423]: I0715 16:57:26.045315 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:26 localhost proxy[423]: I0715 16:57:26.045380 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:26 localhost proxy[423]: I0715 16:57:26.045397 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:26 localhost proxy[423]: I0715 16:57:26.045861 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:26 localhost proxy[423]: I0715 16:57:26.045986 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:26 localhost proxy[423]: E0715 16:57:26.046024 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:26 localhost proxy[423]: E0715 16:57:26.046041 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:27 localhost proxy[423]: E0715 16:57:27.041261 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:57:28 localhost proxy[423]: I0715 16:57:28.046448 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:28 localhost proxy[423]: I0715 16:57:28.046518 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:28 localhost proxy[423]: I0715 16:57:28.046535 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:28 localhost proxy[423]: I0715 16:57:28.048298 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:28 localhost proxy[423]: I0715 16:57:28.048333 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:28 localhost proxy[423]: E0715 16:57:28.048367 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:28 localhost proxy[423]: E0715 16:57:28.048385 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:28 localhost docker[543]: [7c82844d] -job pull(busybox, ) = OK (0)
Jul 15 16:57:28 localhost docker[543]: 2014/07/15 16:57:28 POST /containers/create?name=k8s--net--9acb0442--abd36bc9
Jul 15 16:57:28 localhost docker[543]: [7c82844d] +job create(k8s--net--9acb0442--abd36bc9)
Jul 15 16:57:28 localhost docker[543]: [7c82844d] -job create(k8s--net--9acb0442--abd36bc9) = OK (0)
Jul 15 16:57:28 localhost docker[543]: 2014/07/15 16:57:28 POST /containers/06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f/start
Jul 15 16:57:28 localhost docker[543]: [7c82844d] +job start(06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f)
Jul 15 16:57:28 localhost docker[543]: [7c82844d] +job allocate_interface(06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f)
Jul 15 16:57:28 localhost docker[543]: [7c82844d] -job allocate_interface(06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f) = OK (0)
Jul 15 16:57:28 localhost docker[543]: [7c82844d] +job allocate_port(06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f)
Jul 15 16:57:28 localhost docker[543]: port has already been allocated
Jul 15 16:57:28 localhost docker[543]: [7c82844d] -job allocate_port(06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f) = ERR (1)
Jul 15 16:57:28 localhost docker[543]: [7c82844d] +job release_interface(06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f)
Jul 15 16:57:28 localhost docker[543]: [7c82844d] -job release_interface(06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f) = OK (0)
Jul 15 16:57:28 localhost docker[543]: [7c82844d] +job release_interface(06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f)
Jul 15 16:57:28 localhost docker[543]: [7c82844d] -job release_interface(06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f) = OK (0)
Jul 15 16:57:28 localhost docker[543]: Cannot start container 06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f: port has already been allocated
Jul 15 16:57:28 localhost docker[543]: [7c82844d] -job start(06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f) = ERR (1)
Jul 15 16:57:28 localhost docker[543]: [error] server.go:1025 Error: Cannot start container 06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f: port has already been allocated
Jul 15 16:57:28 localhost docker[543]: [error] server.go:90 HTTP Error: statusCode=500 Cannot start container 06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f: port has already been allocated
Jul 15 16:57:28 localhost kubelet[418]: E0715 16:57:28.912768 00418 kubelet.go:699] Failed to introspect network container. (API error (500): Cannot start container 06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f: port has already been allocated
Jul 15 16:57:28 localhost kubelet[418]: ) Skipping manifest 9acb0442
Jul 15 16:57:28 localhost kubelet[418]: E0715 16:57:28.912800 00418 kubelet.go:772] Error syncing manifest: API error (500): Cannot start container 06354d40b90c720a4aea79ec424eb4da1248aa141fa3880ad8d1ae047deaeb2f: port has already been allocated
Jul 15 16:57:28 localhost kubelet[418]: skipping.
Jul 15 16:57:28 localhost docker[543]: 2014/07/15 16:57:28 GET /containers/json
Jul 15 16:57:28 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:57:28 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:57:30 localhost proxy[423]: I0715 16:57:30.048886 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:30 localhost proxy[423]: I0715 16:57:30.048952 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:30 localhost proxy[423]: I0715 16:57:30.048970 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:30 localhost proxy[423]: I0715 16:57:30.051698 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:30 localhost proxy[423]: I0715 16:57:30.051734 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:30 localhost proxy[423]: E0715 16:57:30.051769 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:30 localhost proxy[423]: E0715 16:57:30.051787 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:31 localhost apiserver[416]: I0715 16:57:31.107494 00416 logger.go:111] GET /api/v1beta1/operations/2: (41.993us) 202
Jul 15 16:57:32 localhost proxy[423]: E0715 16:57:32.041648 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:57:32 localhost proxy[423]: I0715 16:57:32.053560 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:32 localhost proxy[423]: I0715 16:57:32.053629 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:32 localhost proxy[423]: I0715 16:57:32.053648 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:32 localhost proxy[423]: I0715 16:57:32.055969 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:32 localhost proxy[423]: I0715 16:57:32.056403 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:32 localhost proxy[423]: E0715 16:57:32.056438 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:32 localhost proxy[423]: E0715 16:57:32.056454 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:34 localhost proxy[423]: I0715 16:57:34.057013 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:34 localhost proxy[423]: I0715 16:57:34.057080 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:34 localhost proxy[423]: I0715 16:57:34.057096 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:34 localhost proxy[423]: I0715 16:57:34.060600 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:34 localhost proxy[423]: I0715 16:57:34.061129 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:34 localhost proxy[423]: E0715 16:57:34.061167 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:34 localhost proxy[423]: E0715 16:57:34.061183 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:36 localhost proxy[423]: I0715 16:57:36.061640 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:36 localhost proxy[423]: I0715 16:57:36.061707 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:36 localhost proxy[423]: I0715 16:57:36.061723 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:36 localhost proxy[423]: I0715 16:57:36.064950 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:36 localhost proxy[423]: I0715 16:57:36.065783 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:36 localhost proxy[423]: E0715 16:57:36.065818 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:36 localhost proxy[423]: E0715 16:57:36.065833 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:36 localhost apiserver[416]: I0715 16:57:36.170408 00416 logger.go:111] GET /api/v1beta1/operations/5: (39.054us) 202
Jul 15 16:57:37 localhost proxy[423]: E0715 16:57:37.042954 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:57:38 localhost proxy[423]: I0715 16:57:38.066286 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:38 localhost proxy[423]: I0715 16:57:38.066357 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:38 localhost proxy[423]: I0715 16:57:38.066372 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:38 localhost proxy[423]: I0715 16:57:38.067673 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:38 localhost proxy[423]: I0715 16:57:38.068489 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:38 localhost proxy[423]: E0715 16:57:38.068527 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:38 localhost proxy[423]: E0715 16:57:38.068545 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:38 localhost kubelet[418]: W0715 16:57:38.926597 00418 kubelet.go:862] Manifest from etcd failed validation, ignoring: [ContainerManifest.Version: invalid value '' Container.Name: invalid value '']
Jul 15 16:57:38 localhost kubelet[418]: I0715 16:57:38.926657 00418 kubelet.go:756] Desired: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol:TCP HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:57:38 localhost docker[543]: 2014/07/15 16:57:38 GET /containers/json
Jul 15 16:57:38 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:57:38 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:57:38 localhost kubelet[418]: I0715 16:57:38.936898 00418 kubelet.go:696] Network container doesn't exist, creating
Jul 15 16:57:38 localhost docker[543]: 2014/07/15 16:57:38 POST /images/create?fromImage=busybox
Jul 15 16:57:38 localhost docker[543]: [7c82844d] +job pull(busybox, )
Jul 15 16:57:40 localhost proxy[423]: I0715 16:57:40.069015 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:40 localhost proxy[423]: I0715 16:57:40.069083 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:40 localhost proxy[423]: I0715 16:57:40.069100 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:40 localhost proxy[423]: I0715 16:57:40.070835 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:40 localhost proxy[423]: I0715 16:57:40.070882 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:40 localhost proxy[423]: E0715 16:57:40.070918 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:40 localhost proxy[423]: E0715 16:57:40.070935 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:41 localhost kubelet[418]: I0715 16:57:41.696337 00418 logs.go:38] etcd DEBUG: [send.request is cancelled]
Jul 15 16:57:41 localhost kubelet[418]: I0715 16:57:41.696570 00418 logs.go:38] etcd DEBUG: get [registry/hosts/127.0.0.1/kubelet http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:41 localhost kubelet[418]: I0715 16:57:41.696618 00418 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:41 localhost kubelet[418]: I0715 16:57:41.696636 00418 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:41 localhost kubelet[418]: I0715 16:57:41.699709 00418 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:41 localhost kubelet[418]: I0715 16:57:41.699743 00418 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:41 localhost kubelet[418]: I0715 16:57:41.700276 00418 kubelet.go:576] Got state from etcd: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol: HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:57:42 localhost proxy[423]: E0715 16:57:42.044446 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:57:42 localhost proxy[423]: I0715 16:57:42.071303 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:42 localhost proxy[423]: I0715 16:57:42.071373 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:42 localhost proxy[423]: I0715 16:57:42.071389 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:42 localhost proxy[423]: I0715 16:57:42.073703 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:42 localhost proxy[423]: I0715 16:57:42.073842 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:42 localhost proxy[423]: E0715 16:57:42.073876 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:42 localhost proxy[423]: E0715 16:57:42.073892 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:42 localhost docker[543]: 2014/07/15 16:57:42 GET /containers/json
Jul 15 16:57:42 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:57:42 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:57:42 localhost kubelet[418]: I0715 16:57:42.359607 00418 logger.go:111] GET /podInfo?podID=9acb0442: (9.792565ms) 200
Jul 15 16:57:42 localhost docker[543]: [7c82844d] -job pull(busybox, ) = OK (0)
Jul 15 16:57:42 localhost docker[543]: 2014/07/15 16:57:42 POST /containers/create?name=k8s--net--9acb0442--ee550ef2
Jul 15 16:57:42 localhost docker[543]: [7c82844d] +job create(k8s--net--9acb0442--ee550ef2)
Jul 15 16:57:42 localhost docker[543]: [7c82844d] -job create(k8s--net--9acb0442--ee550ef2) = OK (0)
Jul 15 16:57:42 localhost docker[543]: 2014/07/15 16:57:42 POST /containers/92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f/start
Jul 15 16:57:42 localhost docker[543]: [7c82844d] +job start(92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f)
Jul 15 16:57:42 localhost docker[543]: [7c82844d] +job allocate_interface(92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f)
Jul 15 16:57:42 localhost docker[543]: [7c82844d] -job allocate_interface(92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f) = OK (0)
Jul 15 16:57:42 localhost docker[543]: [7c82844d] +job allocate_port(92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f)
Jul 15 16:57:42 localhost docker[543]: port has already been allocated
Jul 15 16:57:42 localhost docker[543]: [7c82844d] -job allocate_port(92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f) = ERR (1)
Jul 15 16:57:42 localhost docker[543]: [7c82844d] +job release_interface(92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f)
Jul 15 16:57:42 localhost docker[543]: [7c82844d] -job release_interface(92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f) = OK (0)
Jul 15 16:57:42 localhost docker[543]: [7c82844d] +job release_interface(92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f)
Jul 15 16:57:42 localhost docker[543]: [7c82844d] -job release_interface(92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f) = OK (0)
Jul 15 16:57:42 localhost docker[543]: Cannot start container 92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f: port has already been allocated
Jul 15 16:57:42 localhost docker[543]: [7c82844d] -job start(92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f) = ERR (1)
Jul 15 16:57:42 localhost docker[543]: [error] server.go:1025 Error: Cannot start container 92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f: port has already been allocated
Jul 15 16:57:42 localhost kubelet[418]: E0715 16:57:42.600369 00418 kubelet.go:699] Failed to introspect network container. (API error (500): Cannot start container 92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f: port has already been allocated
Jul 15 16:57:42 localhost kubelet[418]: ) Skipping manifest 9acb0442
Jul 15 16:57:42 localhost kubelet[418]: E0715 16:57:42.600400 00418 kubelet.go:772] Error syncing manifest: API error (500): Cannot start container 92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f: port has already been allocated
Jul 15 16:57:42 localhost kubelet[418]: skipping.
Jul 15 16:57:42 localhost docker[543]: [error] server.go:90 HTTP Error: statusCode=500 Cannot start container 92d3e149a364713bdd33c12fdff015a6fd179c68eb3649ac825202fb3d72864f: port has already been allocated
Jul 15 16:57:42 localhost docker[543]: 2014/07/15 16:57:42 GET /containers/json
Jul 15 16:57:42 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:57:42 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:57:42 localhost kubelet[418]: I0715 16:57:42.609973 00418 kubelet.go:837] Got configuration from etcd: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol: HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:57:42 localhost kubelet[418]: W0715 16:57:42.610080 00418 kubelet.go:862] Manifest from etcd failed validation, ignoring: [ContainerManifest.Version: invalid value '' Container.Name: invalid value '']
Jul 15 16:57:42 localhost kubelet[418]: I0715 16:57:42.610093 00418 kubelet.go:756] Desired: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol:TCP HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:57:42 localhost kubelet[418]: I0715 16:57:42.610122 00418 logs.go:38] etcd DEBUG: watch [registry/hosts/127.0.0.1/kubelet http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:42 localhost kubelet[418]: I0715 16:57:42.610132 00418 logs.go:38] etcd DEBUG: get [registry/hosts/127.0.0.1/kubelet http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:42 localhost kubelet[418]: I0715 16:57:42.610151 00418 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=true&wait=true]
Jul 15 16:57:42 localhost kubelet[418]: I0715 16:57:42.610159 00418 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=true&wait=true | method GET]
Jul 15 16:57:42 localhost docker[543]: 2014/07/15 16:57:42 GET /containers/json
Jul 15 16:57:42 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:57:42 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:57:42 localhost kubelet[418]: I0715 16:57:42.620656 00418 kubelet.go:696] Network container doesn't exist, creating
Jul 15 16:57:42 localhost docker[543]: 2014/07/15 16:57:42 POST /images/create?fromImage=busybox
Jul 15 16:57:42 localhost docker[543]: [7c82844d] +job pull(busybox, )
Jul 15 16:57:44 localhost proxy[423]: I0715 16:57:44.075588 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:44 localhost proxy[423]: I0715 16:57:44.075660 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:44 localhost proxy[423]: I0715 16:57:44.075674 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:44 localhost proxy[423]: I0715 16:57:44.077781 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:44 localhost proxy[423]: I0715 16:57:44.077811 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:44 localhost proxy[423]: E0715 16:57:44.077840 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:44 localhost proxy[423]: E0715 16:57:44.077853 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:46 localhost docker[543]: [7c82844d] -job pull(busybox, ) = OK (0)
Jul 15 16:57:46 localhost docker[543]: 2014/07/15 16:57:46 POST /containers/create?name=k8s--net--9acb0442--144c3af0
Jul 15 16:57:46 localhost docker[543]: [7c82844d] +job create(k8s--net--9acb0442--144c3af0)
Jul 15 16:57:46 localhost proxy[423]: I0715 16:57:46.078138 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:46 localhost proxy[423]: I0715 16:57:46.078190 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:46 localhost proxy[423]: I0715 16:57:46.078200 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:46 localhost proxy[423]: I0715 16:57:46.079748 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:46 localhost proxy[423]: I0715 16:57:46.079772 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:46 localhost proxy[423]: E0715 16:57:46.079798 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:46 localhost proxy[423]: E0715 16:57:46.079819 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:46 localhost docker[543]: [7c82844d] -job create(k8s--net--9acb0442--144c3af0) = OK (0)
Jul 15 16:57:46 localhost docker[543]: 2014/07/15 16:57:46 POST /containers/7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a/start
Jul 15 16:57:46 localhost docker[543]: [7c82844d] +job start(7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a)
Jul 15 16:57:46 localhost docker[543]: [7c82844d] +job allocate_interface(7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a)
Jul 15 16:57:46 localhost docker[543]: [7c82844d] -job allocate_interface(7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a) = OK (0)
Jul 15 16:57:46 localhost docker[543]: [7c82844d] +job allocate_port(7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a)
Jul 15 16:57:46 localhost docker[543]: port has already been allocated
Jul 15 16:57:46 localhost docker[543]: [7c82844d] -job allocate_port(7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a) = ERR (1)
Jul 15 16:57:46 localhost docker[543]: [7c82844d] +job release_interface(7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a)
Jul 15 16:57:46 localhost docker[543]: [7c82844d] -job release_interface(7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a) = OK (0)
Jul 15 16:57:46 localhost docker[543]: [7c82844d] +job release_interface(7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a)
Jul 15 16:57:46 localhost docker[543]: [7c82844d] -job release_interface(7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a) = OK (0)
Jul 15 16:57:46 localhost docker[543]: Cannot start container 7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a: port has already been allocated
Jul 15 16:57:46 localhost docker[543]: [7c82844d] -job start(7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a) = ERR (1)
Jul 15 16:57:46 localhost docker[543]: [error] server.go:1025 Error: Cannot start container 7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a: port has already been allocated
Jul 15 16:57:46 localhost docker[543]: [error] server.go:90 HTTP Error: statusCode=500 Cannot start container 7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a: port has already been allocated
Jul 15 16:57:46 localhost kubelet[418]: E0715 16:57:46.103276 00418 kubelet.go:699] Failed to introspect network container. (API error (500): Cannot start container 7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a: port has already been allocated
Jul 15 16:57:46 localhost kubelet[418]: ) Skipping manifest 9acb0442
Jul 15 16:57:46 localhost kubelet[418]: E0715 16:57:46.103302 00418 kubelet.go:772] Error syncing manifest: API error (500): Cannot start container 7bedc71eda1154541e406c58a04fcd22c00fff1f5241ae5ddf869818f59b376a: port has already been allocated
Jul 15 16:57:46 localhost kubelet[418]: skipping.
Jul 15 16:57:46 localhost docker[543]: 2014/07/15 16:57:46 GET /containers/json
Jul 15 16:57:46 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:57:46 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:57:47 localhost proxy[423]: E0715 16:57:47.044787 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:57:48 localhost proxy[423]: I0715 16:57:48.080172 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:48 localhost proxy[423]: I0715 16:57:48.080222 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:48 localhost proxy[423]: I0715 16:57:48.080233 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:48 localhost proxy[423]: I0715 16:57:48.080623 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:48 localhost proxy[423]: I0715 16:57:48.080656 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:48 localhost proxy[423]: E0715 16:57:48.080684 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:48 localhost proxy[423]: E0715 16:57:48.080695 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:50 localhost proxy[423]: I0715 16:57:50.081133 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:50 localhost proxy[423]: I0715 16:57:50.081193 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:50 localhost proxy[423]: I0715 16:57:50.081205 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:50 localhost proxy[423]: I0715 16:57:50.083098 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:50 localhost proxy[423]: I0715 16:57:50.084481 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:50 localhost proxy[423]: E0715 16:57:50.084517 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:50 localhost proxy[423]: E0715 16:57:50.084531 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:51 localhost apiserver[416]: I0715 16:57:51.108724 00416 logger.go:111] GET /api/v1beta1/operations/2: (25ns) 202
Jul 15 16:57:52 localhost proxy[423]: E0715 16:57:52.046324 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:57:52 localhost proxy[423]: I0715 16:57:52.085892 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:52 localhost proxy[423]: I0715 16:57:52.085953 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:52 localhost proxy[423]: I0715 16:57:52.085965 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:52 localhost proxy[423]: I0715 16:57:52.087337 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:52 localhost proxy[423]: I0715 16:57:52.088666 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:52 localhost proxy[423]: E0715 16:57:52.088705 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:52 localhost proxy[423]: E0715 16:57:52.088722 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:54 localhost proxy[423]: I0715 16:57:54.089202 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:54 localhost proxy[423]: I0715 16:57:54.089270 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:54 localhost proxy[423]: I0715 16:57:54.089287 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:54 localhost proxy[423]: I0715 16:57:54.092116 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:54 localhost proxy[423]: I0715 16:57:54.093379 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:54 localhost proxy[423]: E0715 16:57:54.093415 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:54 localhost proxy[423]: E0715 16:57:54.093430 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:56 localhost proxy[423]: I0715 16:57:56.094006 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:56 localhost proxy[423]: I0715 16:57:56.094073 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:56 localhost proxy[423]: I0715 16:57:56.094089 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:56 localhost proxy[423]: I0715 16:57:56.097413 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:56 localhost proxy[423]: I0715 16:57:56.097971 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:56 localhost proxy[423]: E0715 16:57:56.098008 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:56 localhost proxy[423]: E0715 16:57:56.098024 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:56 localhost kubelet[418]: W0715 16:57:56.114270 00418 kubelet.go:862] Manifest from etcd failed validation, ignoring: [ContainerManifest.Version: invalid value '' Container.Name: invalid value '']
Jul 15 16:57:56 localhost kubelet[418]: I0715 16:57:56.114342 00418 kubelet.go:756] Desired: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol:TCP HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:57:56 localhost docker[543]: 2014/07/15 16:57:56 GET /containers/json
Jul 15 16:57:56 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:57:56 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:57:56 localhost kubelet[418]: I0715 16:57:56.123366 00418 kubelet.go:696] Network container doesn't exist, creating
Jul 15 16:57:56 localhost docker[543]: 2014/07/15 16:57:56 POST /images/create?fromImage=busybox
Jul 15 16:57:56 localhost docker[543]: [7c82844d] +job pull(busybox, )
Jul 15 16:57:56 localhost apiserver[416]: I0715 16:57:56.171879 00416 logger.go:111] GET /api/v1beta1/operations/5: (42.366us) 202
Jul 15 16:57:57 localhost proxy[423]: E0715 16:57:57.046705 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:57:58 localhost proxy[423]: I0715 16:57:58.100473 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:57:58 localhost proxy[423]: I0715 16:57:58.100534 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:58 localhost proxy[423]: I0715 16:57:58.100547 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:57:58 localhost proxy[423]: I0715 16:57:58.102949 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:58 localhost proxy[423]: I0715 16:57:58.102983 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:57:58 localhost proxy[423]: E0715 16:57:58.103017 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:57:58 localhost proxy[423]: E0715 16:57:58.103033 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:00 localhost proxy[423]: I0715 16:58:00.104574 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:00 localhost proxy[423]: I0715 16:58:00.104631 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:00 localhost proxy[423]: I0715 16:58:00.104644 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:00 localhost proxy[423]: I0715 16:58:00.106621 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:00 localhost proxy[423]: I0715 16:58:00.106651 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:00 localhost proxy[423]: E0715 16:58:00.106681 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:00 localhost proxy[423]: E0715 16:58:00.106696 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:00 localhost docker[543]: [7c82844d] -job pull(busybox, ) = OK (0)
Jul 15 16:58:00 localhost docker[543]: 2014/07/15 16:58:00 POST /containers/create?name=k8s--net--9acb0442--6cf96eae
Jul 15 16:58:00 localhost docker[543]: [7c82844d] +job create(k8s--net--9acb0442--6cf96eae)
Jul 15 16:58:00 localhost docker[543]: [7c82844d] -job create(k8s--net--9acb0442--6cf96eae) = OK (0)
Jul 15 16:58:00 localhost docker[543]: 2014/07/15 16:58:00 POST /containers/25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e/start
Jul 15 16:58:00 localhost docker[543]: [7c82844d] +job start(25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e)
Jul 15 16:58:00 localhost docker[543]: [7c82844d] +job allocate_interface(25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e)
Jul 15 16:58:00 localhost docker[543]: [7c82844d] -job allocate_interface(25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e) = OK (0)
Jul 15 16:58:00 localhost docker[543]: [7c82844d] +job allocate_port(25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e)
Jul 15 16:58:00 localhost docker[543]: port has already been allocated
Jul 15 16:58:00 localhost docker[543]: [7c82844d] -job allocate_port(25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e) = ERR (1)
Jul 15 16:58:00 localhost docker[543]: [7c82844d] +job release_interface(25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e)
Jul 15 16:58:00 localhost docker[543]: [7c82844d] -job release_interface(25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e) = OK (0)
Jul 15 16:58:00 localhost docker[543]: [7c82844d] +job release_interface(25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e)
Jul 15 16:58:00 localhost docker[543]: [7c82844d] -job release_interface(25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e) = OK (0)
Jul 15 16:58:00 localhost docker[543]: Cannot start container 25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e: port has already been allocated
Jul 15 16:58:00 localhost docker[543]: [7c82844d] -job start(25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e) = ERR (1)
Jul 15 16:58:00 localhost docker[543]: [error] server.go:1025 Error: Cannot start container 25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e: port has already been allocated
Jul 15 16:58:00 localhost docker[543]: [error] server.go:90 HTTP Error: statusCode=500 Cannot start container 25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e: port has already been allocated
Jul 15 16:58:00 localhost kubelet[418]: E0715 16:58:00.264062 00418 kubelet.go:699] Failed to introspect network container. (API error (500): Cannot start container 25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e: port has already been allocated
Jul 15 16:58:00 localhost kubelet[418]: ) Skipping manifest 9acb0442
Jul 15 16:58:00 localhost kubelet[418]: E0715 16:58:00.264090 00418 kubelet.go:772] Error syncing manifest: API error (500): Cannot start container 25dca2c048a9c3b88d89af239e8b680b818cc56e6f6ebd85a6a44a3184f5861e: port has already been allocated
Jul 15 16:58:00 localhost kubelet[418]: skipping.
Jul 15 16:58:00 localhost docker[543]: 2014/07/15 16:58:00 GET /containers/json
Jul 15 16:58:00 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:58:00 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:58:02 localhost proxy[423]: E0715 16:58:02.047197 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:58:02 localhost proxy[423]: I0715 16:58:02.108273 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:02 localhost proxy[423]: I0715 16:58:02.108336 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:02 localhost proxy[423]: I0715 16:58:02.108347 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:02 localhost proxy[423]: I0715 16:58:02.110389 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:02 localhost proxy[423]: I0715 16:58:02.110964 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:02 localhost proxy[423]: E0715 16:58:02.111024 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:02 localhost proxy[423]: E0715 16:58:02.111041 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:04 localhost proxy[423]: I0715 16:58:04.113001 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:04 localhost proxy[423]: I0715 16:58:04.113076 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:04 localhost proxy[423]: I0715 16:58:04.113092 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:04 localhost proxy[423]: I0715 16:58:04.116349 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:04 localhost proxy[423]: I0715 16:58:04.116864 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:04 localhost proxy[423]: E0715 16:58:04.116907 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:04 localhost proxy[423]: E0715 16:58:04.116924 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:06 localhost proxy[423]: I0715 16:58:06.117568 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:06 localhost proxy[423]: I0715 16:58:06.117636 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:06 localhost proxy[423]: I0715 16:58:06.117652 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:06 localhost proxy[423]: I0715 16:58:06.120258 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:06 localhost proxy[423]: I0715 16:58:06.121868 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:06 localhost proxy[423]: E0715 16:58:06.121911 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:06 localhost proxy[423]: E0715 16:58:06.121930 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:07 localhost proxy[423]: E0715 16:58:07.047569 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:58:08 localhost proxy[423]: I0715 16:58:08.122579 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:08 localhost proxy[423]: I0715 16:58:08.122647 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:08 localhost proxy[423]: I0715 16:58:08.122662 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:08 localhost proxy[423]: I0715 16:58:08.125753 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:08 localhost proxy[423]: I0715 16:58:08.127606 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:08 localhost proxy[423]: E0715 16:58:08.127666 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:08 localhost proxy[423]: E0715 16:58:08.127693 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:10 localhost proxy[423]: I0715 16:58:10.129439 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:10 localhost proxy[423]: I0715 16:58:10.129504 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:10 localhost proxy[423]: I0715 16:58:10.129519 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:10 localhost proxy[423]: I0715 16:58:10.132475 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:10 localhost proxy[423]: I0715 16:58:10.132978 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:10 localhost proxy[423]: E0715 16:58:10.133014 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:10 localhost proxy[423]: E0715 16:58:10.133030 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:10 localhost kubelet[418]: W0715 16:58:10.275143 00418 kubelet.go:862] Manifest from etcd failed validation, ignoring: [ContainerManifest.Version: invalid value '' Container.Name: invalid value '']
Jul 15 16:58:10 localhost kubelet[418]: I0715 16:58:10.275203 00418 kubelet.go:756] Desired: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol:TCP HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:58:10 localhost docker[543]: 2014/07/15 16:58:10 GET /containers/json
Jul 15 16:58:10 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:58:10 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:58:10 localhost kubelet[418]: I0715 16:58:10.286559 00418 kubelet.go:696] Network container doesn't exist, creating
Jul 15 16:58:10 localhost docker[543]: 2014/07/15 16:58:10 POST /images/create?fromImage=busybox
Jul 15 16:58:10 localhost docker[543]: [7c82844d] +job pull(busybox, )
Jul 15 16:58:11 localhost apiserver[416]: I0715 16:58:11.110790 00416 logger.go:111] GET /api/v1beta1/operations/2: (44.188us) 202
Jul 15 16:58:11 localhost kubelet[418]: I0715 16:58:11.696792 00418 logs.go:38] etcd DEBUG: [send.request is cancelled]
Jul 15 16:58:11 localhost kubelet[418]: I0715 16:58:11.696944 00418 logs.go:38] etcd DEBUG: get [registry/hosts/127.0.0.1/kubelet http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:11 localhost kubelet[418]: I0715 16:58:11.696977 00418 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:11 localhost kubelet[418]: I0715 16:58:11.696993 00418 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:11 localhost kubelet[418]: I0715 16:58:11.698805 00418 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:11 localhost kubelet[418]: I0715 16:58:11.699957 00418 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:11 localhost kubelet[418]: I0715 16:58:11.700100 00418 kubelet.go:576] Got state from etcd: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol: HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:58:12 localhost proxy[423]: E0715 16:58:12.047920 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:58:12 localhost proxy[423]: I0715 16:58:12.134704 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:12 localhost proxy[423]: I0715 16:58:12.134755 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:12 localhost proxy[423]: I0715 16:58:12.134767 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:12 localhost proxy[423]: I0715 16:58:12.136057 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:12 localhost proxy[423]: I0715 16:58:12.137154 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:12 localhost proxy[423]: E0715 16:58:12.137189 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:12 localhost proxy[423]: E0715 16:58:12.137202 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:12 localhost docker[543]: 2014/07/15 16:58:12 GET /containers/json
Jul 15 16:58:12 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:58:12 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:58:12 localhost kubelet[418]: I0715 16:58:12.368563 00418 logger.go:111] GET /podInfo?podID=9acb0442: (7.040583ms) 200
Jul 15 16:58:14 localhost docker[543]: [7c82844d] -job pull(busybox, ) = OK (0)
Jul 15 16:58:14 localhost docker[543]: 2014/07/15 16:58:14 POST /containers/create?name=k8s--net--9acb0442--6b6a69ee
Jul 15 16:58:14 localhost docker[543]: [7c82844d] +job create(k8s--net--9acb0442--6b6a69ee)
Jul 15 16:58:14 localhost proxy[423]: I0715 16:58:14.137849 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:14 localhost proxy[423]: I0715 16:58:14.140150 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:14 localhost proxy[423]: I0715 16:58:14.140169 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:14 localhost proxy[423]: I0715 16:58:14.142233 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:14 localhost proxy[423]: I0715 16:58:14.142264 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:14 localhost proxy[423]: E0715 16:58:14.142290 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:14 localhost proxy[423]: E0715 16:58:14.142302 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:14 localhost docker[543]: [7c82844d] -job create(k8s--net--9acb0442--6b6a69ee) = OK (0)
Jul 15 16:58:14 localhost docker[543]: 2014/07/15 16:58:14 POST /containers/3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39/start
Jul 15 16:58:14 localhost docker[543]: [7c82844d] +job start(3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39)
Jul 15 16:58:14 localhost docker[543]: [7c82844d] +job allocate_interface(3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39)
Jul 15 16:58:14 localhost docker[543]: [7c82844d] -job allocate_interface(3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39) = OK (0)
Jul 15 16:58:14 localhost docker[543]: [7c82844d] +job allocate_port(3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39)
Jul 15 16:58:14 localhost docker[543]: port has already been allocated
Jul 15 16:58:14 localhost docker[543]: [7c82844d] -job allocate_port(3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39) = ERR (1)
Jul 15 16:58:14 localhost docker[543]: [7c82844d] +job release_interface(3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39)
Jul 15 16:58:14 localhost docker[543]: [7c82844d] -job release_interface(3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39) = OK (0)
Jul 15 16:58:14 localhost docker[543]: [7c82844d] +job release_interface(3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39)
Jul 15 16:58:14 localhost docker[543]: [7c82844d] -job release_interface(3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39) = OK (0)
Jul 15 16:58:14 localhost docker[543]: Cannot start container 3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39: port has already been allocated
Jul 15 16:58:14 localhost kubelet[418]: E0715 16:58:14.160082 00418 kubelet.go:699] Failed to introspect network container. (API error (500): Cannot start container 3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39: port has already been allocated
Jul 15 16:58:14 localhost kubelet[418]: ) Skipping manifest 9acb0442
Jul 15 16:58:14 localhost kubelet[418]: E0715 16:58:14.160112 00418 kubelet.go:772] Error syncing manifest: API error (500): Cannot start container 3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39: port has already been allocated
Jul 15 16:58:14 localhost kubelet[418]: skipping.
Jul 15 16:58:14 localhost docker[543]: [7c82844d] -job start(3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39) = ERR (1)
Jul 15 16:58:14 localhost docker[543]: [error] server.go:1025 Error: Cannot start container 3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39: port has already been allocated
Jul 15 16:58:14 localhost docker[543]: [error] server.go:90 HTTP Error: statusCode=500 Cannot start container 3ee66524a665c56b33a8e6a619dcc4519625a27e62096f3b010f3dff9cedfa39: port has already been allocated
Jul 15 16:58:14 localhost docker[543]: 2014/07/15 16:58:14 GET /containers/json
Jul 15 16:58:14 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:58:14 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:58:14 localhost kubelet[418]: I0715 16:58:14.171735 00418 kubelet.go:837] Got configuration from etcd: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol: HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:58:14 localhost kubelet[418]: W0715 16:58:14.171831 00418 kubelet.go:862] Manifest from etcd failed validation, ignoring: [ContainerManifest.Version: invalid value '' Container.Name: invalid value '']
Jul 15 16:58:14 localhost kubelet[418]: I0715 16:58:14.172708 00418 kubelet.go:756] Desired: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol:TCP HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:58:14 localhost kubelet[418]: I0715 16:58:14.172860 00418 logs.go:38] etcd DEBUG: watch [registry/hosts/127.0.0.1/kubelet http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:14 localhost kubelet[418]: I0715 16:58:14.172873 00418 logs.go:38] etcd DEBUG: get [registry/hosts/127.0.0.1/kubelet http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:14 localhost kubelet[418]: I0715 16:58:14.172896 00418 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=true&wait=true]
Jul 15 16:58:14 localhost kubelet[418]: I0715 16:58:14.172905 00418 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/hosts/127.0.0.1/kubelet?consistent=true&recursive=true&wait=true | method GET]
Jul 15 16:58:14 localhost docker[543]: 2014/07/15 16:58:14 GET /containers/json
Jul 15 16:58:14 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:58:14 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:58:14 localhost kubelet[418]: I0715 16:58:14.184044 00418 kubelet.go:696] Network container doesn't exist, creating
Jul 15 16:58:14 localhost docker[543]: 2014/07/15 16:58:14 POST /images/create?fromImage=busybox
Jul 15 16:58:14 localhost docker[543]: [7c82844d] +job pull(busybox, )
Jul 15 16:58:16 localhost proxy[423]: I0715 16:58:16.143828 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:16 localhost proxy[423]: I0715 16:58:16.143899 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:16 localhost proxy[423]: I0715 16:58:16.143913 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:16 localhost proxy[423]: I0715 16:58:16.146580 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:16 localhost proxy[423]: I0715 16:58:16.146614 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:16 localhost proxy[423]: E0715 16:58:16.146647 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:16 localhost proxy[423]: E0715 16:58:16.146663 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:16 localhost apiserver[416]: I0715 16:58:16.174607 00416 logger.go:111] GET /api/v1beta1/operations/5: (39.699us) 202
Jul 15 16:58:17 localhost proxy[423]: E0715 16:58:17.049042 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:58:18 localhost proxy[423]: I0715 16:58:18.148421 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:18 localhost proxy[423]: I0715 16:58:18.148488 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:18 localhost proxy[423]: I0715 16:58:18.148503 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:18 localhost proxy[423]: I0715 16:58:18.150600 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:18 localhost proxy[423]: I0715 16:58:18.150633 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:18 localhost proxy[423]: E0715 16:58:18.150666 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:18 localhost proxy[423]: E0715 16:58:18.150683 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:18 localhost docker[543]: [7c82844d] -job pull(busybox, ) = OK (0)
Jul 15 16:58:18 localhost docker[543]: 2014/07/15 16:58:18 POST /containers/create?name=k8s--net--9acb0442--66cb6c00
Jul 15 16:58:18 localhost docker[543]: [7c82844d] +job create(k8s--net--9acb0442--66cb6c00)
Jul 15 16:58:18 localhost docker[543]: [7c82844d] -job create(k8s--net--9acb0442--66cb6c00) = OK (0)
Jul 15 16:58:18 localhost docker[543]: 2014/07/15 16:58:18 POST /containers/d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129/start
Jul 15 16:58:18 localhost docker[543]: [7c82844d] +job start(d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129)
Jul 15 16:58:18 localhost docker[543]: [7c82844d] +job allocate_interface(d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129)
Jul 15 16:58:18 localhost docker[543]: [7c82844d] -job allocate_interface(d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129) = OK (0)
Jul 15 16:58:18 localhost docker[543]: [7c82844d] +job allocate_port(d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129)
Jul 15 16:58:18 localhost docker[543]: port has already been allocated
Jul 15 16:58:18 localhost docker[543]: [7c82844d] -job allocate_port(d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129) = ERR (1)
Jul 15 16:58:18 localhost docker[543]: [7c82844d] +job release_interface(d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129)
Jul 15 16:58:18 localhost kubelet[418]: E0715 16:58:18.488253 00418 kubelet.go:699] Failed to introspect network container. (API error (500): Cannot start container d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129: port has already been allocated
Jul 15 16:58:18 localhost kubelet[418]: ) Skipping manifest 9acb0442
Jul 15 16:58:18 localhost kubelet[418]: E0715 16:58:18.488311 00418 kubelet.go:772] Error syncing manifest: API error (500): Cannot start container d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129: port has already been allocated
Jul 15 16:58:18 localhost kubelet[418]: skipping.
Jul 15 16:58:18 localhost docker[543]: [7c82844d] -job release_interface(d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129) = OK (0)
Jul 15 16:58:18 localhost docker[543]: [7c82844d] +job release_interface(d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129)
Jul 15 16:58:18 localhost docker[543]: [7c82844d] -job release_interface(d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129) = OK (0)
Jul 15 16:58:18 localhost docker[543]: Cannot start container d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129: port has already been allocated
Jul 15 16:58:18 localhost docker[543]: [7c82844d] -job start(d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129) = ERR (1)
Jul 15 16:58:18 localhost docker[543]: [error] server.go:1025 Error: Cannot start container d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129: port has already been allocated
Jul 15 16:58:18 localhost docker[543]: [error] server.go:90 HTTP Error: statusCode=500 Cannot start container d31d424683290ab1f42e551bfd79f5e59b8769496ee4232c91c4a34c55989129: port has already been allocated
Jul 15 16:58:18 localhost docker[543]: 2014/07/15 16:58:18 GET /containers/json
Jul 15 16:58:18 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:58:18 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:58:20 localhost proxy[423]: I0715 16:58:20.151153 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:20 localhost proxy[423]: I0715 16:58:20.151207 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:20 localhost proxy[423]: I0715 16:58:20.151216 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:20 localhost proxy[423]: I0715 16:58:20.152475 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:20 localhost proxy[423]: I0715 16:58:20.152496 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:20 localhost proxy[423]: E0715 16:58:20.152533 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:20 localhost proxy[423]: E0715 16:58:20.152547 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:22 localhost proxy[423]: E0715 16:58:22.050443 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:58:22 localhost proxy[423]: I0715 16:58:22.153080 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:22 localhost proxy[423]: I0715 16:58:22.153132 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:22 localhost proxy[423]: I0715 16:58:22.153142 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:22 localhost proxy[423]: I0715 16:58:22.155981 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:22 localhost proxy[423]: I0715 16:58:22.157367 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:22 localhost proxy[423]: E0715 16:58:22.157396 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:22 localhost proxy[423]: E0715 16:58:22.157477 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:24 localhost proxy[423]: I0715 16:58:24.157864 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:24 localhost proxy[423]: I0715 16:58:24.157932 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:24 localhost proxy[423]: I0715 16:58:24.157948 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:24 localhost proxy[423]: I0715 16:58:24.159564 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:24 localhost proxy[423]: I0715 16:58:24.159651 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:24 localhost proxy[423]: E0715 16:58:24.159651 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:24 localhost proxy[423]: E0715 16:58:24.159652 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:26 localhost proxy[423]: I0715 16:58:26.161275 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:26 localhost proxy[423]: I0715 16:58:26.161344 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:26 localhost proxy[423]: I0715 16:58:26.161360 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:26 localhost proxy[423]: I0715 16:58:26.165401 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:26 localhost proxy[423]: I0715 16:58:26.165503 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:26 localhost proxy[423]: E0715 16:58:26.165536 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:26 localhost proxy[423]: E0715 16:58:26.165552 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:27 localhost proxy[423]: E0715 16:58:27.051823 00423 file.go:79] Couldn't read file: /tmp/proxy_config : open /tmp/proxy_config: no such file or directory
Jul 15 16:58:28 localhost proxy[423]: I0715 16:58:28.167446 00423 logs.go:38] etcd DEBUG: get [registry/services/specs http://127.0.0.1:4001] [%!s(MISSING)]
Jul 15 16:58:28 localhost proxy[423]: I0715 16:58:28.167497 00423 logs.go:38] etcd DEBUG: [Connecting to etcd: attempt 1 for keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:28 localhost proxy[423]: I0715 16:58:28.167508 00423 logs.go:38] etcd DEBUG: [send.request.to http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true | method GET]
Jul 15 16:58:28 localhost proxy[423]: I0715 16:58:28.170165 00423 logs.go:38] etcd DEBUG: [recv.response.from http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:28 localhost proxy[423]: I0715 16:58:28.170433 00423 logs.go:38] etcd DEBUG: [recv.success. http://127.0.0.1:4001/v2/keys/registry/services/specs?consistent=true&recursive=false&sorted=true]
Jul 15 16:58:28 localhost proxy[423]: E0715 16:58:28.170466 00423 etcd.go:115] Failed to get the key registry/services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:28 localhost proxy[423]: E0715 16:58:28.170478 00423 etcd.go:75] Failed to get any services: 100: Key not found (/registry/services) [9]
Jul 15 16:58:28 localhost kubelet[418]: W0715 16:58:28.504647 00418 kubelet.go:862] Manifest from etcd failed validation, ignoring: [ContainerManifest.Version: invalid value '' Container.Name: invalid value '']
Jul 15 16:58:28 localhost kubelet[418]: I0715 16:58:28.504705 00418 kubelet.go:756] Desired: [{Version: ID:9acb0442 Volumes:[] Containers:[{Name: Image:dockerfile/nginx Command:[] WorkingDir: Ports:[{Name: HostPort:8080 ContainerPort:80 Protocol:TCP HostIP:}] Env:[{Name:SERVICE_HOST Key: Value:127.0.0.1}] Memory:0 CPU:0 VolumeMounts:[] LivenessProbe:{Enabled:false Type: HTTPGet:{Path: Port: Host:} InitialDelaySeconds:0}}]}]
Jul 15 16:58:28 localhost docker[543]: 2014/07/15 16:58:28 GET /containers/json
Jul 15 16:58:28 localhost docker[543]: [7c82844d] +job containers()
Jul 15 16:58:28 localhost docker[543]: [7c82844d] -job containers() = OK (0)
Jul 15 16:58:28 localhost kubelet[418]: I0715 16:58:28.513858 00418 kubelet.go:696] Network container doesn't exist, creating
Jul 15 16:58:28 localhost docker[543]: 2014/07/15 16:58:28 POST /images/create?fromImage=busybox
Jul 15 16:58:28 localhost docker[543]: [7c82844d] +job pull(busybox, )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment