Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

running one of the examples against an OS X build of openshift v3 doesn't seem to work #180

Closed
jstrachan opened this issue Oct 6, 2014 · 25 comments · Fixed by #184
Closed

Comments

@jstrachan
Copy link
Contributor

I just built master of openshift origin V3; ran openshift start.

then I did this based on the README.md

cd examples/guestbook
origin/examples/guestbook/$ openshift kube process -c template.json | openshift kube apply -c -
F1006 18:36:28.464539 52838 kubecfg.go:496] failed to process template: request [&http.Request{Method:"POST", URL:(*url.URL)(0xc2080eabd0), Proto:"HTTP/1.1", ProtoMajor:1, ProtoMinor:1, Header:http.Header{}, Body:ioutil.nopCloser{Reader:(*bytes.Buffer)(0xc2080eaa80)}, ContentLength:4193, TransferEncoding:[]string(nil), Close:false, Host:"127.0.0.1:8080", Form:url.Values(nil), PostForm:url.Values(nil), MultipartForm:(*multipart.Form)(nil), Trailer:http.Header(nil), RemoteAddr:"", RequestURI:"", TLS:(*tls.ConnectionState)(nil)}] failed (404) 404 Not Found: Not Found: "/v1beta1/templateConfigs"
Config.items is empty

Is this a known issue? I've found using vanilla kube examples for pods didn't seem to work either. Wonder if its known or an OS X issue (or just a bad example?)

@VojtechVitek
Copy link
Contributor

cd examples/guestbook
origin/examples/guestbook/$ openshift kube process -c template.json | openshift kube apply -c -

The above worked for me on OS X right now with HEAD == 043e5c6.

I wonder what caused failed (404) 404 Not Found: Not Found: "/v1beta1/templateConfigs" error for you. Can you run openshift kube process -c template.json only and provide us with the output?

//EDIT: Output from the server (openshift start cmd) would be great too!

@VojtechVitek
Copy link
Contributor

Could you try running curl -d @template.json http://127.0.0.1:8080/osapi/v1beta1/templateConfigs as well?

@jstrachan
Copy link
Contributor Author

I get the same when trying a sample pods.json too

origin/api/examples/$ openshift kube -c pod.json create pods
F1006 19:00:26.576155 56439 kubecfg.go:385] Got request error: request [&http.Request{Method:"POST", URL:(*url.URL)(0xc208096070), Proto:"HTTP/1.1", ProtoMajor:1, ProtoMinor:1, Header:http.Header{}, Body:ioutil.nopCloser{Reader:(*bytes.Buffer)(0xc20802bea0)}, ContentLength:527, TransferEncoding:[]string(nil), Close:false, Host:"127.0.0.1:8080", Form:url.Values(nil), PostForm:url.Values(nil), MultipartForm:(*multipart.Form)(nil), Trailer:http.Header(nil), RemoteAddr:"", RequestURI:"", TLS:(*tls.ConnectionState)(nil)}] failed (404) 404 Not Found: Not Found: "/v1beta1/pods?labels="

@jstrachan
Copy link
Contributor Author

$ curl -d @template.json http://127.0.0.1:8080/osapi/v1beta1/templateConfigs
{"kind":"Config","id":"example1","creationTimestamp":"2014-10-06T19:01:24+01:00","selfLink":"/osapi/v1beta1/templateConfigs/example1","apiVersion":"v1beta1","namespace":"","name":"My awesome PHP app","description":"Example PHP application with PostgreSQL database","items":[{"kind":"Service","id":"frontend","creationTimestamp":null,"apiVersion":"v1beta1","namespace":"","port":8080,"protocol":"TCP","selector":{"name":"frontend"},"containerPort":9292},{"kind":"Service","id":"database","creationTimestamp":null,"apiVersion":"v1beta1","namespace":"","port":5432,"protocol":"TCP","selector":{"name":"database"},"containerPort":5432},{"kind":"ReplicationController","id":"frontendController","creationTimestamp":null,"apiVersion":"v1beta1","namespace":"","desiredState":{"replicas":2,"replicaSelector":{"name":"frontend"},"podTemplate":{"desiredState":{"manifest":{"version":"v1beta1","id":"frontendController","volumes":null,"containers":[{"name":"nginx-php-app","image":"mfojtik/nginx-php-app","ports":[{"hostPort":8080,"containerPort":9292,"protocol":"TCP"}],"env":[{"name":"PGPASSWORD","key":"PGPASSWORD","value":"oYEEDC4J"},{"name":"PGUSER","key":"PGUSER","value":"adminkjn4"},{"name":"PGDATABASE","key":"PGDATABASE","value":"mydb"}],"imagePullPolicy":""}],"restartPolicy":{"always":{}}}},"labels":{"name":"frontend"}}},"currentState":{"replicas":0,"podTemplate":{"desiredState":{"manifest":{"version":"","id":"","volumes":null,"containers":null,"restartPolicy":{}}}}},"labels":{"name":"frontend"}},{"kind":"Pod","id":"postgresql","creationTimestamp":null,"apiVersion":"v1beta1","namespace":"","labels":{"name":"database"},"desiredState":{"manifest":{"version":"v1beta1","id":"database","volumes":null,"containers":[{"name":"postgresql","image":"postgres","ports":[{"hostPort":5432,"containerPort":5432,"protocol":"TCP"}],"env":[{"name":"PGPASSWORD","key":"PGPASSWORD","value":"oYEEDC4J"},{"name":"PGUSER","key":"PGUSER","value":"adminkjn4"},{"name":"PGDATABASE","key":"PGDATABASE","value":"mydb"}],"imagePullPolicy":""}],"restartPolicy":{"always":{}}}},"currentState":{"manifest":{"version":"","id":"","volumes":null,"containers":null,"restartPolicy":{}}}}]}

@jstrachan
Copy link
Contributor Author

Happy to try any command line / JSON files you think might work :)

@jstrachan
Copy link
Contributor Author

openshift/origin/examples/guestbook/$ openshift kube process -c template.json
F1006 19:05:21.286546 57104 kubecfg.go:496] failed to process template: request [&http.Request{Method:"POST", URL:(*url.URL)(0xc20802aaf0), Proto:"HTTP/1.1", ProtoMajor:1, ProtoMinor:1, Header:http.Header{}, Body:ioutil.nopCloser{Reader:(*bytes.Buffer)(0xc20802a8c0)}, ContentLength:4193, TransferEncoding:[]string(nil), Close:false, Host:"127.0.0.1:8080", Form:url.Values(nil), PostForm:url.Values(nil), MultipartForm:(*multipart.Form)(nil), Trailer:http.Header(nil), RemoteAddr:"", RequestURI:"", TLS:(*tls.ConnectionState)(nil)}] failed (404) 404 Not Found: Not Found: "/v1beta1/templateConfigs"

@VojtechVitek
Copy link
Contributor

@jstrachan can you attach the output of the openshift start command while hitting the error?
//EDIT: The whole output would be great.

@jstrachan
Copy link
Contributor Author

I don't see any new output when I try the "kube process" or "create pods" commands now. I stopped and started openshift and tried these commands and got no new errors:

origin/examples/guestbook/$ openshift kube process -c template.json
F1006 19:31:18.600687 59692 kubecfg.go:496] failed to process template: request [&http.Request{Method:"POST", URL:(*url.URL)(0xc20802aa10), Proto:"HTTP/1.1", ProtoMajor:1, ProtoMinor:1, Header:http.Header{}, Body:ioutil.nopCloser{Reader:(*bytes.Buffer)(0xc20802a7e0)}, ContentLength:4193, TransferEncoding:[]string(nil), Close:false, Host:"127.0.0.1:8080", Form:url.Values(nil), PostForm:url.Values(nil), MultipartForm:(*multipart.Form)(nil), Trailer:http.Header(nil), RemoteAddr:"", RequestURI:"", TLS:(*tls.ConnectionState)(nil)}] failed (404) 404 Not Found: Not Found: "/v1beta1/templateConfigs"

origin/api/examples/$ openshift kube -c pod.json create pods
F1006 19:31:08.681852 59671 kubecfg.go:385] Got request error: request [&http.Request{Method:"POST", URL:(*url.URL)(0xc20809e000), Proto:"HTTP/1.1", ProtoMajor:1, ProtoMinor:1, Header:http.Header{}, Body:ioutil.nopCloser{Reader:(*bytes.Buffer)(0xc20802be30)}, ContentLength:527, TransferEncoding:[]string(nil), Close:false, Host:"127.0.0.1:8080", Form:url.Values(nil), PostForm:url.Values(nil), MultipartForm:(*multipart.Form)(nil), Trailer:http.Header(nil), RemoteAddr:"", RequestURI:"", TLS:(*tls.ConnectionState)(nil)}] failed (404) 404 Not Found: Not Found: "/v1beta1/pods?labels="

Here's the entire output I got from the first attempt at running 'openshift start' with the previous commands in previous comments:

jstrachan (master):/workspace/goproj/src/github.com/openshift/origin/$ openshift start
I1006 16:25:43.438149 27836 master.go:395] Started etcd at http://127.0.0.1:4001
[etcd] Oct  6 16:25:43.438 INFO      | openshift.local is starting a new cluster
[etcd] Oct  6 16:25:43.440 INFO      | etcd server [name openshift.local, listen on 127.0.0.1:4001, advertised url http://127.0.0.1:4001]
[etcd] Oct  6 16:25:43.440 INFO      | peer server [name openshift.local, listen on :7001, advertised url http://127.0.0.1:7001]
[etcd] Oct  6 16:25:43.440 INFO      | openshift.local starting in peer mode
[etcd] Oct  6 16:25:43.440 INFO      | openshift.local: state changed from 'initialized' to 'follower'.
[etcd] Oct  6 16:25:43.440 INFO      | openshift.local: state changed from 'follower' to 'leader'.
[etcd] Oct  6 16:25:43.440 INFO      | openshift.local: leader changed from '' to 'openshift.local'.
I1006 16:25:43.491323 27836 master.go:276] Started Kubernetes API at http://127.0.0.1:8080/api/v1beta1
I1006 16:25:43.491343 27836 master.go:277] Started Kubernetes API at http://127.0.0.1:8080/api/v1beta2
I1006 16:25:43.491349 27836 master.go:278] Started OpenShift API at http://127.0.0.1:8080/osapi/v1beta1
I1006 16:25:43.491386 27836 master.go:310] Started OpenShift static asset server at http://127.0.0.1:8091
I1006 16:25:43.506625 27836 master.go:329] Connecting to Docker at tcp://192.168.59.103:2375
E1006 16:25:43.507552 27836 docker.go:86] Unable to parse Docker config file: unexpected end of JSON input
I1006 16:25:43.508330 27836 master.go:372] Started Kubernetes Proxy
I1006 16:25:43.508412 27836 master.go:408] Started Kubernetes Scheduler
I1006 16:25:43.508433 27836 master.go:381] Started Kubernetes Replication Manager
I1006 16:25:43.508450 27836 controller.go:38] Creating build controller with timeout=1200
E1006 16:30:43.510142 27836 iowatcher.go:88] Unable to decode an event from the watch stream: unexpected EOF
E1006 16:40:43.517067 27836 reflector.go:101] failed to watch *api.Pod: Get http://127.0.0.1:8080/api/v1beta1/watch/pods?fields=DesiredState.Host%3D&resourceVersion=2: EOF
E1006 16:55:43.653321 27836 iowatcher.go:88] Unable to decode an event from the watch stream: unexpected EOF
E1006 17:05:43.538890 27836 reflector.go:101] failed to watch *api.Pod: Get http://127.0.0.1:8080/api/v1beta1/watch/pods?fields=DesiredState.Host%3D&resourceVersion=2: EOF
E1006 17:25:43.520930 27836 reflector.go:101] failed to watch *api.Pod: Get http://127.0.0.1:8080/api/v1beta1/watch/pods?fields=DesiredState.Host%21%3D&resourceVersion=2: http: can't write HTTP request on broken connection



E1006 17:45:43.511257 27836 reflector.go:101] failed to watch *api.Pod: Get http://127.0.0.1:8080/api/v1beta1/watch/pods?fields=DesiredState.Host%21%3D&resourceVersion=2: EOF
[etcd] Oct  6 17:49:05.643 INFO      | openshift.local: snapshot of 10006 events at index 10006 completed
E1006 18:00:43.512427 27836 reflector.go:101] failed to watch *api.Pod: Get http://127.0.0.1:8080/api/v1beta1/watch/pods?fields=DesiredState.Host%3D&resourceVersion=2: EOF
E1006 18:20:43.516922 27836 reflector.go:101] failed to watch *api.Pod: Get http://127.0.0.1:8080/api/v1beta1/watch/pods?fields=DesiredState.Host%21%3D&resourceVersion=2: EOF
E1006 18:30:43.513415 27836 reflector.go:101] failed to watch *api.Pod: Get http://127.0.0.1:8080/api/v1beta1/watch/pods?fields=DesiredState.Host%3D&resourceVersion=2: EOF
E1006 18:55:43.511593 27836 iowatcher.go:88] Unable to decode an event from the watch stream: unexpected EOF
E1006 19:00:43.511393 27836 controller.go:63] Error listing builds: Get http://127.0.0.1:8080/osapi/v1beta1/builds?labels=: http: can't write HTTP request on broken connection (&url.Error{Op:"Get", URL:"http://127.0.0.1:8080/osapi/v1beta1/builds?labels=", Err:(*errors.errorString)(0xc20838f010)})
E1006 19:00:43.513365 27836 reflector.go:101] failed to watch *api.Pod: Get http://127.0.0.1:8080/api/v1beta1/watch/pods?fields=DesiredState.Host%3D&resourceVersion=2: EOF
E1006 19:05:43.512456 27836 replication_controller.go:189] Synchronization error: Get http://127.0.0.1:8080/api/v1beta1/replicationControllers?labels=: http: can't write HTTP request on broken connection (&url.Error{Op:"Get", URL:"http://127.0.0.1:8080/api/v1beta1/replicationControllers?labels=", Err:(*errors.errorString)(0xc208cc11c0)})
E1006 19:05:44.516490 27836 iowatcher.go:88] Unable to decode an event from the watch stream: unexpected EOF
E1006 19:10:43.513627 27836 iowatcher.go:88] Unable to decode an event from the watch stream: unexpected EOF
E1006 19:10:44.517452 27836 iowatcher.go:88] Unable to decode an event from the watch stream: unexpected EOF
[etcd] Oct  6 19:12:27.803 INFO      | openshift.local: snapshot of 10004 events at index 20010 completed
E1006 19:15:44.518749 27836 iowatcher.go:88] Unable to decode an event from the watch stream: unexpected EOF
E1006 19:25:43.510684 27836 reflector.go:101] failed to watch *api.Pod: Get http://127.0.0.1:8080/api/v1beta1/watch/pods?fields=DesiredState.Host%21%3D&resourceVersion=2: EOF
E1006 19:26:13.510697 27836 iowatcher.go:88] Unable to decode an event from the watch stream: unexpected EOF

@VojtechVitek
Copy link
Contributor

There's a bunch of HTTP connection failures. Can you make sure this isn't a firewall issue? Could you turn the firewall off temporarily?

@jstrachan
Copy link
Contributor Author

OK I tried not being on the VPN; restarting from a clean directory openshift then I tried creating a pod

$ openshift kube -c pod.json create pods
F1007 04:50:17.377970 77068 kubecfg.go:385] Got request error: request [&http.Request{Method:"POST", URL:(*url.URL)(0xc20809e000), Proto:"HTTP/1.1", ProtoMajor:1, ProtoMinor:1, Header:http.Header{}, Body:ioutil.nopCloser{Reader:(*bytes.Buffer)(0xc20802be30)}, ContentLength:527, TransferEncoding:[]string(nil), Close:false, Host:"127.0.0.1:8080", Form:url.Values(nil), PostForm:url.Values(nil), MultipartForm:(*multipart.Form)(nil), Trailer:http.Header(nil), RemoteAddr:"", RequestURI:"", TLS:(*tls.ConnectionState)(nil)}] failed (404) 404 Not Found: Not Found: "/v1beta1/pods?labels="

Shouldn't it be "/api/v1beta1/pods?labels="? Am wondering if this is some OS X thing? FWIW I can view this fine in a browser: http://127.0.0.1:8080/api/v1beta1/pods?labels=

{
kind: "PodList",
creationTimestamp: null,
selfLink: "/api/v1beta1/pods",
resourceVersion: 2,
apiVersion: "v1beta1",
namespace: "",
items: [ ]
}

FWIW I didn't see any new error messages in the shell running "openshift start" - I think those previous watch issues are either a VPN issue or a red herring:

I1007 04:50:05.674339 77051 master.go:395] Started etcd at http://127.0.0.1:4001
[etcd] Oct  7 04:50:05.674 INFO      | openshift.local is starting a new cluster
[etcd] Oct  7 04:50:05.677 INFO      | etcd server [name openshift.local, listen on 127.0.0.1:4001, advertised url http://127.0.0.1:4001]
[etcd] Oct  7 04:50:05.677 INFO      | peer server [name openshift.local, listen on :7001, advertised url http://127.0.0.1:7001]
[etcd] Oct  7 04:50:05.677 INFO      | openshift.local starting in peer mode
[etcd] Oct  7 04:50:05.678 INFO      | openshift.local: state changed from 'initialized' to 'follower'.
[etcd] Oct  7 04:50:05.678 INFO      | openshift.local: state changed from 'follower' to 'leader'.
[etcd] Oct  7 04:50:05.678 INFO      | openshift.local: leader changed from '' to 'openshift.local'.
I1007 04:50:05.681431 77051 master.go:276] Started Kubernetes API at http://127.0.0.1:8080/api/v1beta1
I1007 04:50:05.681460 77051 master.go:277] Started Kubernetes API at http://127.0.0.1:8080/api/v1beta2
I1007 04:50:05.681465 77051 master.go:278] Started OpenShift API at http://127.0.0.1:8080/osapi/v1beta1
I1007 04:50:05.681531 77051 master.go:310] Started OpenShift static asset server at http://127.0.0.1:8091
I1007 04:50:05.693822 77051 master.go:329] Connecting to Docker at tcp://192.168.59.103:2375
E1007 04:50:05.694540 77051 docker.go:86] Unable to parse Docker config file: unexpected end of JSON input
I1007 04:50:05.695990 77051 master.go:372] Started Kubernetes Proxy
I1007 04:50:05.696089 77051 master.go:408] Started Kubernetes Scheduler
I1007 04:50:05.696106 77051 master.go:381] Started Kubernetes Replication Manager
I1007 04:50:05.696122 77051 controller.go:38] Creating build controller with timeout=1200

I tried the template command and again got no errors in the "openshift start" log:

$ openshift kube process -c template.json
F1007 04:54:03.689258 77457 kubecfg.go:496] failed to process template: request [&http.Request{Method:"POST", URL:(*url.URL)(0xc20802aa80), Proto:"HTTP/1.1", ProtoMajor:1, ProtoMinor:1, Header:http.Header{}, Body:ioutil.nopCloser{Reader:(*bytes.Buffer)(0xc20802a850)}, ContentLength:4193, TransferEncoding:[]string(nil), Close:false, Host:"127.0.0.1:8080", Form:url.Values(nil), PostForm:url.Values(nil), MultipartForm:(*multipart.Form)(nil), Trailer:http.Header(nil), RemoteAddr:"", RequestURI:"", TLS:(*tls.ConnectionState)(nil)}] failed (404) 404 Not Found: Not Found: "/v1beta1/templateConfigs"

Again I wonder if "/v1beta1/templateConfigs" is wrong (its missing the "/osapi" prefix). I can view http://127.0.0.1:8080/osapi/v1beta1/templateConfigs fine in a browser:

{
kind: "Status",
creationTimestamp: null,
apiVersion: "v1beta1",
namespace: "",
status: "Failure",
message: "template.Storage.List() is not implemented.",
code: 500
}

@jstrachan
Copy link
Contributor Author

BTW I tried running all the various tests and they seemed fine on my OS X box

jstrachan (master):/workspace/goproj/src/github.com/openshift/origin/$ hack/test-go.sh
ok      github.com/openshift/origin/examples    1.172s  coverage: 0.0% of statements
ok      github.com/openshift/origin/pkg/build   1.035s  coverage: 54.5% of statements
ok      github.com/openshift/origin/pkg/build/api/validation    1.033s  coverage: 100.0% of statements
ok      github.com/openshift/origin/pkg/build/registry/build    1.050s  coverage: 86.5% of statements
ok      github.com/openshift/origin/pkg/build/registry/buildconfig  1.040s  coverage: 85.7% of statements
ok      github.com/openshift/origin/pkg/build/registry/etcd 1.065s  coverage: 87.2% of statements
ok      github.com/openshift/origin/pkg/build/strategy  1.037s  coverage: 78.8% of statements
ok      github.com/openshift/origin/pkg/build/webhook   1.045s  coverage: 97.5% of statements
ok      github.com/openshift/origin/pkg/build/webhook/github    1.070s  coverage: 95.8% of statements
ok      github.com/openshift/origin/pkg/cmd/util/docker 1.021s  coverage: 6.7% of statements
ok      github.com/openshift/origin/pkg/config  1.041s  coverage: 81.6% of statements
ok      github.com/openshift/origin/pkg/deploy/api/validation   1.023s  coverage: 100.0% of statements
ok      github.com/openshift/origin/pkg/deploy/registry/deploy  1.040s  coverage: 88.9% of statements
ok      github.com/openshift/origin/pkg/deploy/registry/deployconfig    1.042s  coverage: 90.6% of statements
ok      github.com/openshift/origin/pkg/deploy/registry/etcd    1.096s  coverage: 100.0% of statements
ok      github.com/openshift/origin/pkg/image/api/validation    1.034s  coverage: 100.0% of statements
ok      github.com/openshift/origin/pkg/image/registry/etcd 1.073s  coverage: 96.0% of statements
ok      github.com/openshift/origin/pkg/image/registry/image    1.044s  coverage: 91.3% of statements
ok      github.com/openshift/origin/pkg/image/registry/imagerepository  1.045s  coverage: 86.5% of statements
ok      github.com/openshift/origin/pkg/image/registry/imagerepositorymapping   1.041s  coverage: 86.8% of statements
ok      github.com/openshift/origin/pkg/route/registry/etcd 1.049s  coverage: 77.4% of statements
ok      github.com/openshift/origin/pkg/route/registry/route    1.039s  coverage: 80.5% of statements
ok      github.com/openshift/origin/pkg/template    1.106s  coverage: 78.3% of statements
ok      github.com/openshift/origin/pkg/template/api/validation 1.030s  coverage: 70.0% of statements
ok      github.com/openshift/origin/pkg/template/generator  1.020s  coverage: 100.0% of statements
ok      github.com/openshift/origin/pkg/template/generator/examples 1.034s  coverage: 85.7% of statements
?       github.com/openshift/origin/test/integration    [no test files]
jstrachan (master):/workspace/goproj/src/github.com/openshift/origin/$ hack/test-integration.sh
etcd: {"action":"get","node":{"key":"/","dir":true}}

Integration test cases ...

ok      github.com/openshift/origin/test/integration    3.226s  coverage: 33.3% of statements

Complete
jstrachan (master):/workspace/goproj/src/github.com/openshift/origin/$ hack/test-cmd.sh
openshift: openshift version 0.1, build 043e5c6 kubernetes v0.3-dev
kubelet: ok
I1007 05:19:09.036543 81575 master.go:395] Started etcd at http://127.0.0.1:4001
[etcd] Oct  7 05:19:09.036 INFO      | openshift.local is starting a new cluster
[etcd] Oct  7 05:19:09.038 INFO      | etcd server [name openshift.local, listen on 127.0.0.1:4001, advertised url http://127.0.0.1:4001]
[etcd] Oct  7 05:19:09.038 CRITICAL  | Failed to create listener: listen tcp 127.0.0.1:4001: bind: address already in use
apiserver: ok
ID                  Image(s)            Host                Labels              Status
----------          ----------          ----------          ----------          ----------

ID                  Image(s)                    Host                Labels                 Status
----------          ----------                  ----------          ----------             ----------
hello-openshift     openshift/hello-openshift   /                   name=hello-openshift   Waiting

Status
----------
Success

kube(pods): ok
ID                  Labels              Selector            Port
----------          ----------          ----------          ----------

ID                  Labels              Selector            Port
----------          ----------          ----------          ----------
frontend                                name=frontend       9998

Status
----------
Success

kube(services): ok
Minion identifier
----------
127.0.0.1

Minion identifier
----------
127.0.0.1

kube(minions): ok
ID                  Docker Ref
----------          ----------

ID                  Docker Ref
----------          ----------
test                openshift/ruby-19-centos:latest

Status
----------
Success

kube(images): ok
ID                  Docker Repo         Tags
----------          ----------          ----------

ID                  Docker Repo                Tags
----------          ----------                 ----------
test                openshift/ruby-19-centos   latest,another

Status
----------
Success

kube(imageRepositories): ok
ID                  Docker Repo                Tags
----------          ----------                 ----------
test                openshift/ruby-19-centos   another,latest

Status
----------
Success

ID                  Docker Ref
----------          ----------
abcd1234            openshift/ruby-19-centos:latest

ID                  Docker Repo                Tags
----------          ----------                 ----------
test                openshift/ruby-19-centos   another,latest,sometag

kube(imageRepositoryMappings): ok
ID                  Host/Port           Path                Service             Labels
----------          ----------          ----------          ----------          ----------

ID                  Host/Port           Path                Service             Labels
----------          ----------          ----------          ----------          ----------
testroute           test.example.com                        testservice         name=test

Status
----------
Success

kube(routes): ok
kube(template+config): ok

Complete

@jstrachan
Copy link
Contributor Author

FWIW here's the output of "openshift" start after running the above tests. Via the REST API I can see the various pods / replication controllers / services from the integration test; though can't ping them from my Mac (though can do inside boot2docker).

Am thinking its maybe better to run "openshift start" inside vagrant as my host can't see the pods IP address (as its running inside boot2docker) :). It'd be awesome if we could figure out a way to fix the networking so the host can see those IPs...

I1007 05:18:24.699270 81103 master.go:395] Started etcd at http://127.0.0.1:4001
[etcd] Oct  7 05:18:24.700 INFO      | openshift.local is starting a new cluster
[etcd] Oct  7 05:18:24.701 INFO      | etcd server [name openshift.local, listen on 127.0.0.1:4001, advertised url http://127.0.0.1:4001]
[etcd] Oct  7 05:18:24.701 INFO      | peer server [name openshift.local, listen on :7001, advertised url http://127.0.0.1:7001]
[etcd] Oct  7 05:18:24.701 INFO      | openshift.local starting in peer mode
[etcd] Oct  7 05:18:24.701 INFO      | openshift.local: state changed from 'initialized' to 'follower'.
[etcd] Oct  7 05:18:24.701 INFO      | openshift.local: state changed from 'follower' to 'leader'.
[etcd] Oct  7 05:18:24.701 INFO      | openshift.local: leader changed from '' to 'openshift.local'.
I1007 05:18:24.703947 81103 master.go:276] Started Kubernetes API at http://127.0.0.1:8080/api/v1beta1
I1007 05:18:24.703967 81103 master.go:277] Started Kubernetes API at http://127.0.0.1:8080/api/v1beta2
I1007 05:18:24.703972 81103 master.go:278] Started OpenShift API at http://127.0.0.1:8080/osapi/v1beta1
I1007 05:18:24.711064 81103 master.go:310] Started OpenShift static asset server at http://127.0.0.1:8091
I1007 05:18:24.720021 81103 master.go:329] Connecting to Docker at tcp://192.168.59.103:2375
E1007 05:18:24.720760 81103 docker.go:86] Unable to parse Docker config file: unexpected end of JSON input
I1007 05:18:24.721471 81103 master.go:372] Started Kubernetes Proxy
I1007 05:18:24.721584 81103 master.go:408] Started Kubernetes Scheduler
I1007 05:18:24.721603 81103 master.go:381] Started Kubernetes Replication Manager
I1007 05:18:24.721619 81103 controller.go:38] Creating build controller with timeout=1200
I1007 05:19:09.596773 81103 request.go:266] Waiting for completion of /operations/16
E1007 05:19:10.758902 81103 etcd.go:166] Failed to get the key: registry/services/endpoints/frontend 100: Key not found (/registry/services/endpoints) [44]
E1007 05:19:10.758951 81103 etcd.go:149] Couldn't get endpoints for frontend : 100: Key not found (/registry/services/endpoints) [44] skipping
E1007 05:19:10.759351 81103 etcd.go:166] Failed to get the key: registry/services/endpoints/redismaster 100: Key not found (/registry/services/endpoints) [44]
E1007 05:19:10.759365 81103 etcd.go:149] Couldn't get endpoints for redismaster : 100: Key not found (/registry/services/endpoints) [44] skipping
E1007 05:19:10.759709 81103 etcd.go:166] Failed to get the key: registry/services/endpoints/redisslave 100: Key not found (/registry/services/endpoints) [44]
E1007 05:19:10.759723 81103 etcd.go:149] Couldn't get endpoints for redisslave : 100: Key not found (/registry/services/endpoints) [44] skipping
E1007 05:19:10.761571 81103 etcd.go:166] Failed to get the key: registry/services/endpoints/frontend 100: Key not found (/registry/services/endpoints) [44]
E1007 05:19:10.761586 81103 etcd.go:149] Couldn't get endpoints for frontend : 100: Key not found (/registry/services/endpoints) [44] skipping
E1007 05:19:10.761930 81103 etcd.go:166] Failed to get the key: registry/services/endpoints/redismaster 100: Key not found (/registry/services/endpoints) [44]
E1007 05:19:10.761946 81103 etcd.go:149] Couldn't get endpoints for redismaster : 100: Key not found (/registry/services/endpoints) [44] skipping
E1007 05:19:10.762296 81103 etcd.go:166] Failed to get the key: registry/services/endpoints/redisslave 100: Key not found (/registry/services/endpoints) [44]
E1007 05:19:10.762309 81103 etcd.go:149] Couldn't get endpoints for redisslave : 100: Key not found (/registry/services/endpoints) [44] skipping
E1007 05:19:11.623569 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:11.652967 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:11.682437 81103 request.go:266] Waiting for completion of /operations/21
E1007 05:19:13.710174 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:13.741504 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:13.777348 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:13.807018 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:13.833996 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:13.869135 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:13.896148 81103 request.go:266] Waiting for completion of /operations/28
E1007 05:19:14.779825 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b57fed-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  64  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b57fed-4dd9-11e4-b7b3-3c0754574d78 15b57fed-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:19:14.780488 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b60216-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  62  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b60216-4dd9-11e4-b7b3-3c0754574d78 15b60216-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:19:14.815281 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  60  default} map[name:redisslave replicationController:redisSlaveController template:guestbook] {{v1beta1 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 [] [{slave brendanburns/redis-slave []  [{ 6380 6379 TCP }] [{REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:19:15.896850 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:15.926843 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:15.955095 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:15.985900 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:16.012453 81103 request.go:266] Waiting for completion of /operations/35
E1007 05:19:18.013203 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.043144 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.073044 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.104185 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.131706 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.158845 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.189444 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.218570 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.245652 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.274891 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.305159 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.331341 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.363369 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.393600 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.430275 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.465692 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.495298 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:18.521525 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:18.551656 81103 request.go:266] Waiting for completion of /operations/53
E1007 05:19:20.552355 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:20.577039 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:20.609315 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:20.637267 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:20.663112 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:20.688622 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:20.716590 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:20.746908 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:20.775766 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:20.798990 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:20.828723 81103 request.go:266] Waiting for completion of /operations/63
E1007 05:19:22.829379 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:22.857078 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:22.889109 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:22.923267 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:22.951680 81103 request.go:266] Waiting for completion of /operations/67
E1007 05:19:24.826676 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b60216-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  133  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b60216-4dd9-11e4-b7b3-3c0754574d78 15b60216-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:19:24.826733 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b57fed-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  137  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b57fed-4dd9-11e4-b7b3-3c0754574d78 15b57fed-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:19:24.850619 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  139  default} map[template:guestbook name:redisslave replicationController:redisSlaveController] {{v1beta1 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 [] [{slave brendanburns/redis-slave []  [{ 6380 6379 TCP }] [{REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:19:24.953395 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:24.983952 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:25.014310 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:25.045399 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:25.072723 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:25.107600 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:25.131190 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:25.162456 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:25.189977 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:25.219528 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:25.250341 81103 request.go:266] Waiting for completion of /operations/77
E1007 05:19:27.251056 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:27.276373 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:27.303427 81103 request.go:266] Waiting for completion of /operations/79
E1007 05:19:29.305150 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:29.333298 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:29.366208 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:29.393415 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:29.423408 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:29.453312 81103 request.go:266] Waiting for completion of /operations/84
E1007 05:19:31.454806 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:31.481260 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:31.509803 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:31.541729 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:31.575908 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:31.608662 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:31.636327 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:31.672078 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:31.702484 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:31.734513 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:31.761522 81103 request.go:266] Waiting for completion of /operations/94
E1007 05:19:33.762213 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:33.794296 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:33.820115 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:33.848032 81103 request.go:266] Waiting for completion of /operations/97
E1007 05:19:34.868691 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  187  default} map[name:redisslave replicationController:redisSlaveController template:guestbook] {{v1beta1 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 [] [{slave brendanburns/redis-slave []  [{ 6380 6379 TCP }] [{REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:19:34.879942 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b60216-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  191  default} map[replicationController:frontendController template:guestbook name:frontend] {{v1beta1 15b60216-4dd9-11e4-b7b3-3c0754574d78 15b60216-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:19:34.880008 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b57fed-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  199  default} map[template:guestbook name:frontend replicationController:frontendController] {{v1beta1 15b57fed-4dd9-11e4-b7b3-3c0754574d78 15b57fed-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:19:35.849749 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:35.872946 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:35.899597 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:35.928669 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:35.958388 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:35.993950 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:36.026578 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:36.053641 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:36.084551 81103 request.go:266] Waiting for completion of /operations/105
E1007 05:19:38.085721 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:38.110782 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:38.139724 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:38.169371 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:38.199043 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:38.228143 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:38.259849 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:38.287226 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:38.310145 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:38.338413 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:38.367756 81103 request.go:266] Waiting for completion of /operations/115
E1007 05:19:40.368885 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:40.400871 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:40.431551 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:40.463784 81103 request.go:266] Waiting for completion of /operations/118
E1007 05:19:42.464967 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:42.492145 81103 request.go:266] Waiting for completion of /operations/119
E1007 05:19:44.493698 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:44.528559 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:44.558128 81103 request.go:266] Waiting for completion of /operations/121
E1007 05:19:44.906984 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  247  default} map[name:redisslave replicationController:redisSlaveController template:guestbook] {{v1beta1 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 [] [{slave brendanburns/redis-slave []  [{ 6380 6379 TCP }] [{REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:19:44.915368 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b57fed-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  245  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b57fed-4dd9-11e4-b7b3-3c0754574d78 15b57fed-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:19:44.915439 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b60216-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  237  default} map[template:guestbook name:frontend replicationController:frontendController] {{v1beta1 15b60216-4dd9-11e4-b7b3-3c0754574d78 15b60216-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:19:46.559931 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:46.585582 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:46.614544 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:46.642726 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:46.674772 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:46.701239 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:46.730048 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:46.760057 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:46.784638 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:46.810186 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:46.835140 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:46.863170 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:46.895293 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:46.926461 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:46.954866 81103 request.go:266] Waiting for completion of /operations/135
E1007 05:19:48.955815 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:48.981198 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.006759 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.031839 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.056852 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.087102 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.116541 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.142979 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.172935 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.202507 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.226815 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.251090 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.280051 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.304165 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.331787 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.358731 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.388282 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.413327 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.441531 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.475286 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.502924 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.533542 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.562374 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.590195 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.612953 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.643314 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:49.671233 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:49.699438 81103 request.go:266] Waiting for completion of /operations/162
E1007 05:19:51.701178 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:51.726381 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:51.756334 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:51.781547 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:51.807550 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:51.835937 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:51.864217 81103 request.go:266] Waiting for completion of /operations/168
E1007 05:19:53.865973 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:53.893289 81103 request.go:266] Waiting for completion of /operations/169
E1007 05:19:54.929114 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  339  default} map[name:redisslave replicationController:redisSlaveController template:guestbook] {{v1beta1 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 [] [{slave brendanburns/redis-slave []  [{ 6380 6379 TCP }] [{REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:19:54.941638 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b60216-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  343  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b60216-4dd9-11e4-b7b3-3c0754574d78 15b60216-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:19:54.941700 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b57fed-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  331  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b57fed-4dd9-11e4-b7b3-3c0754574d78 15b57fed-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:19:55.894368 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:55.927121 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:55.959101 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:55.985241 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:56.012417 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:56.035826 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:56.064712 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:56.092675 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:56.125221 81103 request.go:266] Waiting for completion of /operations/177
E1007 05:19:58.126426 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.154843 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.182303 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.212734 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.241631 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.275762 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.302048 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.331196 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.356272 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.381929 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.407899 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.435213 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.463769 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.493532 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.522682 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.548704 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.580195 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.607978 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:19:58.634809 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:19:58.663850 81103 request.go:266] Waiting for completion of /operations/196
E1007 05:20:00.664860 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:00.692578 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:00.721446 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:00.755825 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:00.782837 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:00.808038 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:00.838219 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:00.866308 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:00.893258 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:00.921395 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:00.952457 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:00.980918 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:01.008057 81103 request.go:266] Waiting for completion of /operations/208
E1007 05:20:03.009443 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:03.038382 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:03.067065 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:03.100821 81103 request.go:266] Waiting for completion of /operations/211
E1007 05:20:04.964479 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b60216-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  415  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b60216-4dd9-11e4-b7b3-3c0754574d78 15b60216-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:04.964536 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b57fed-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  423  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b57fed-4dd9-11e4-b7b3-3c0754574d78 15b57fed-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:04.982882 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  427  default} map[name:redisslave replicationController:redisSlaveController template:guestbook] {{v1beta1 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 [] [{slave brendanburns/redis-slave []  [{ 6380 6379 TCP }] [{REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:05.102515 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:05.133002 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:05.162570 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:05.195751 81103 request.go:266] Waiting for completion of /operations/214
E1007 05:20:07.196942 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:07.224325 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:07.250530 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:07.279389 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:07.304014 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:07.330416 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:07.361470 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:07.390310 81103 request.go:266] Waiting for completion of /operations/221
E1007 05:20:09.391753 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:09.415969 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:09.443308 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:09.472301 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:09.500965 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:09.532194 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:09.559659 81103 request.go:266] Waiting for completion of /operations/227
E1007 05:20:11.560411 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:11.588613 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:11.614485 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:11.640151 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:11.668692 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:11.695936 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:11.724941 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:11.751171 81103 request.go:266] Waiting for completion of /operations/234
E1007 05:20:13.752865 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:13.778731 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:13.807560 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:13.835938 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:13.875012 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:13.906028 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:13.934333 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:13.961117 81103 request.go:266] Waiting for completion of /operations/241
E1007 05:20:14.998053 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b60216-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  487  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b60216-4dd9-11e4-b7b3-3c0754574d78 15b60216-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:14.998110 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b57fed-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  483  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b57fed-4dd9-11e4-b7b3-3c0754574d78 15b57fed-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:15.017947 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  485  default} map[name:redisslave replicationController:redisSlaveController template:guestbook] {{v1beta1 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 [] [{slave brendanburns/redis-slave []  [{ 6380 6379 TCP }] [{REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:15.962850 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:15.993971 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:16.030139 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:16.058908 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:16.065335 81103 kubelet.go:559] Error running pod hello-openshift.etcd container hello-openshift: API error (500): Cannot start container c7edcf29b7c7b67c16f254047c563231d1a6f95c070c7f6bdc3ea8e047bca6d6: cannot join network of a non running container: 8114f8a01e071da889e7f3dbb58c4a130ba3941159138fdb2441dcdb7bebf3a8
E1007 05:20:16.092702 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:16.124483 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:16.152768 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:16.184429 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:16.219687 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:16.254227 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:16.285820 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:16.316774 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:16.345211 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:16.369363 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:16.396387 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:16.426298 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:16.454442 81103 request.go:266] Waiting for completion of /operations/257
E1007 05:20:18.455251 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:18.481043 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:18.508560 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:18.537469 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:18.558886 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:18.585116 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:18.617622 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:18.647166 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:18.675159 81103 request.go:266] Waiting for completion of /operations/265
E1007 05:20:20.675689 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:20.706547 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:20.733194 81103 request.go:266] Waiting for completion of /operations/267
E1007 05:20:22.734113 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:22.761447 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:22.790230 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:22.821318 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:22.850340 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:22.878189 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:22.909579 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:22.936512 81103 request.go:266] Waiting for completion of /operations/274
E1007 05:20:24.937610 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:24.969900 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:24.990125 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:25.023646 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:25.050743 81103 request.go:266] Waiting for completion of /operations/278
E1007 05:20:25.082791 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  557  default} map[template:guestbook name:redisslave replicationController:redisSlaveController] {{v1beta1 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 [] [{slave brendanburns/redis-slave []  [{ 6380 6379 TCP }] [{REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:25.097412 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b60216-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  561  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b60216-4dd9-11e4-b7b3-3c0754574d78 15b60216-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:25.097500 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b57fed-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  541  default} map[template:guestbook name:frontend replicationController:frontendController] {{v1beta1 15b57fed-4dd9-11e4-b7b3-3c0754574d78 15b57fed-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:27.051440 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:27.079364 81103 request.go:266] Waiting for completion of /operations/279
E1007 05:20:29.080301 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:29.108983 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:29.140072 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:29.168550 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:29.201392 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:29.230503 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:29.256488 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:29.286466 81103 request.go:266] Waiting for completion of /operations/286
E1007 05:20:31.287127 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:31.316642 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:31.348651 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:31.377442 81103 request.go:266] Waiting for completion of /operations/289
E1007 05:20:33.378852 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:33.408498 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:33.435392 81103 request.go:266] Waiting for completion of /operations/291
E1007 05:20:35.115416 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b57fed-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  571  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b57fed-4dd9-11e4-b7b3-3c0754574d78 15b57fed-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:35.115479 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b60216-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  587  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b60216-4dd9-11e4-b7b3-3c0754574d78 15b60216-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:35.136114 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  581  default} map[name:redisslave replicationController:redisSlaveController template:guestbook] {{v1beta1 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 [] [{slave brendanburns/redis-slave []  [{ 6380 6379 TCP }] [{REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:35.437013 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:35.469581 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:35.505338 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:35.537454 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:35.567368 81103 request.go:266] Waiting for completion of /operations/295
E1007 05:20:37.568172 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:37.594284 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:37.622426 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:37.652939 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:37.682901 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:37.710298 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:37.737159 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:37.770308 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:37.800275 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:37.826703 81103 request.go:266] Waiting for completion of /operations/304
E1007 05:20:39.827351 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:39.853748 81103 request.go:266] Waiting for completion of /operations/305
E1007 05:20:41.854799 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:41.881771 81103 request.go:266] Waiting for completion of /operations/306
E1007 05:20:43.882428 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:43.915113 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:43.941275 81103 request.go:266] Waiting for completion of /operations/308
E1007 05:20:45.150014 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b60216-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  621  default} map[template:guestbook name:frontend replicationController:frontendController] {{v1beta1 15b60216-4dd9-11e4-b7b3-3c0754574d78 15b60216-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:45.150100 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b57fed-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  593  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b57fed-4dd9-11e4-b7b3-3c0754574d78 15b57fed-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:45.168604 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  609  default} map[name:redisslave replicationController:redisSlaveController template:guestbook] {{v1beta1 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 [] [{slave brendanburns/redis-slave []  [{ 6380 6379 TCP }] [{REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:45.941998 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:45.968898 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:46.001401 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:46.027461 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:46.061611 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:46.092294 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:46.119786 81103 request.go:266] Waiting for completion of /operations/314
E1007 05:20:48.120685 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:48.151610 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:48.182280 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:48.213357 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:48.235986 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:48.266665 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:48.296296 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:48.326554 81103 request.go:266] Waiting for completion of /operations/321
E1007 05:20:50.327592 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.356437 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.383678 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.416585 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.445889 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.477994 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.505992 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.530235 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.566080 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.600239 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.634360 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.664521 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.693317 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.727509 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.758666 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.789361 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.818824 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.849513 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.882394 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:50.912900 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:50.943360 81103 request.go:266] Waiting for completion of /operations/341
E1007 05:20:52.944307 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:52.972416 81103 request.go:266] Waiting for completion of /operations/342
E1007 05:20:54.974285 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:55.003935 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:55.037349 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:55.063967 81103 request.go:266] Waiting for completion of /operations/345
E1007 05:20:55.178380 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b57fed-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  693  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b57fed-4dd9-11e4-b7b3-3c0754574d78 15b57fed-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:55.178442 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b60216-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  679  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b60216-4dd9-11e4-b7b3-3c0754574d78 15b60216-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:55.198523 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  695  default} map[replicationController:redisSlaveController template:guestbook name:redisslave] {{v1beta1 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 [] [{slave brendanburns/redis-slave []  [{ 6380 6379 TCP }] [{REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:20:56.773325 81103 kubelet.go:559] Error running pod 15bee19e-4dd9-11e4-b7b3-3c0754574d78.etcd container slave: no such image
E1007 05:20:56.908684 81103 kubelet.go:559] Error running pod redis-master-2.etcd container master: no such image
E1007 05:20:57.065724 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:57.091702 81103 request.go:266] Waiting for completion of /operations/346
E1007 05:20:59.092299 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:59.117354 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:59.146227 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:59.178001 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:59.207994 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:59.239854 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:59.273732 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:59.299430 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:59.329645 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:59.363211 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:59.388665 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:59.419290 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:59.450448 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:59.480852 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:59.510240 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:20:59.535028 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:20:59.567578 81103 request.go:266] Waiting for completion of /operations/362
E1007 05:21:01.568660 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:01.593799 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:01.622388 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:01.651201 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:01.681629 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:01.710365 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:01.741092 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:01.765707 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:01.794070 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:01.820881 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:01.845811 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:01.875021 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:01.904877 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:01.939038 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:21:01.970871 81103 request.go:266] Waiting for completion of /operations/376
E1007 05:21:03.971690 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:04.001694 81103 factory.go:162] Error scheduling 15b57fed-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:04.028486 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:04.059588 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:04.091478 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:04.117118 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:04.140770 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:04.169647 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:04.198543 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:04.222691 81103 factory.go:162] Error scheduling 15bf20ec-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
E1007 05:21:04.255790 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:21:04.286641 81103 request.go:266] Waiting for completion of /operations/387
E1007 05:21:05.209654 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b60216-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  779  default} map[name:frontend replicationController:frontendController template:guestbook] {{v1beta1 15b60216-4dd9-11e4-b7b3-3c0754574d78 15b60216-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:21:05.209711 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15b57fed-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  759  default} map[replicationController:frontendController template:guestbook name:frontend] {{v1beta1 15b57fed-4dd9-11e4-b7b3-3c0754574d78 15b57fed-4dd9-11e4-b7b3-3c0754574d78 [] [{php-redis brendanburns/php-redis []  [{ 8000 80 TCP }] [{ADMIN_USERNAME adminOHV} {ADMIN_PASSWORD TJxJjQDy} {REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:21:05.228884 81103 endpoints_controller.go:73] Failed to find an IP for pod: {{ 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 2014-10-07 05:19:09 +0100 BST  775  default} map[name:redisslave replicationController:redisSlaveController template:guestbook] {{v1beta1 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 15bf20ec-4dd9-11e4-b7b3-3c0754574d78 [] [{slave brendanburns/redis-slave []  [{ 6380 6379 TCP }] [{REDIS_PASSWORD mGD6kDQV}] 0 0 [] <nil> <nil> false }] {0xd09a50 <nil> <nil>}} Running    map[]} {{   [] [] {<nil> <nil> <nil>}} Waiting    map[]}}
E1007 05:21:06.287899 81103 factory.go:162] Error scheduling 15b60216-4dd9-11e4-b7b3-3c0754574d78: The assignment would cause a constraint violation; retrying
I1007 05:21:06.317455 81103 request.go:266] Waiting for completion of /operations/388

@jstrachan
Copy link
Contributor Author

BTW I thought I'd try the vagrant image instead. I wonder if there is some gremlin in the "openshift kube..." commands?

[vagrant@openshiftdev origin]$ export KUBERNETES_MASTER=http://127.0.0.1:8080/
[vagrant@openshiftdev origin]$ openshift kube list pods
F1007 04:54:05.493837 14322 kubecfg.go:385] Got request error: request [&http.Request{Method:"GET", URL:(*url.URL)(0xc2100b7cb0), Proto:"HTTP/1.1", ProtoMajor:1, ProtoMinor:1, Header:http.Header{}, Body:io.ReadCloser(nil), ContentLength:0, TransferEncoding:[]string(nil), Close:false, Host:"127.0.0.1:8080", Form:url.Values(nil), PostForm:url.Values(nil), MultipartForm:(*multipart.Form)(nil), Trailer:http.Header(nil), RemoteAddr:"", RequestURI:"", TLS:(*tls.ConnectionState)(nil)}] failed (404) 404 Not Found: Not Found: "/v1beta1/pods?labels="

and

[vagrant@openshiftdev guestbook]$ openshift kube process -c template.json | openshift kube apply -c -
F1007 04:56:47.868160 14330 kubecfg.go:496] failed to process template: request [&http.Request{Method:"POST", URL:(*url.URL)(0xc2100b7e00), Proto:"HTTP/1.1", ProtoMajor:1, ProtoMinor:1, Header:http.Header{}, Body:ioutil.nopCloser{Reader:(*bytes.Buffer)(0xc2100b7cb0)}, ContentLength:4193, TransferEncoding:[]string(nil), Close:false, Host:"127.0.0.1:8080", Form:url.Values(nil), PostForm:url.Values(nil), MultipartForm:(*multipart.Form)(nil), Trailer:http.Header(nil), RemoteAddr:"", RequestURI:"", TLS:(*tls.ConnectionState)(nil)}] failed (404) 404 Not Found: Not Found: "/v1beta1/templateConfigs"
Config.items is empty

@rawlingsj
Copy link

I've just run through the steps using OSX and yeah I can see the hello world page in boot2docker but not localhost. I also saw some of the errors in you logs @jstrachan

http://localhost:6061/ - page not found
http://192.168.59.103:6061/ = page displaying 'Hello Openshift!'

[etcd] Oct  7 08:37:32.861 INFO      | Peer URLs in log:  / openshift.local (http://127.0.0.1:7001)
[etcd] Oct  7 08:37:32.862 INFO      | etcd server [name openshift.local, listen on 127.0.0.1:4001, advertised url http://127.0.0.1:4001]
[etcd] Oct  7 08:37:32.862 INFO      | peer server [name openshift.local, listen on :7001, advertised url http://127.0.0.1:7001]
[etcd] Oct  7 08:37:32.862 INFO      | openshift.local starting in peer mode
[etcd] Oct  7 08:37:32.862 INFO      | openshift.local: state changed from 'initialized' to 'follower'.
[etcd] Oct  7 08:37:33.177 INFO      | openshift.local: state changed from 'follower' to 'candidate'.
[etcd] Oct  7 08:37:33.177 INFO      | openshift.local: state changed from 'candidate' to 'leader'.
[etcd] Oct  7 08:37:33.177 INFO      | openshift.local: leader changed from '' to 'openshift.local'.
I1007 08:37:33.208626 00767 master.go:276] Started Kubernetes API at http://127.0.0.1:8080/api/v1beta1
I1007 08:37:33.208643 00767 master.go:277] Started Kubernetes API at http://127.0.0.1:8080/api/v1beta2
I1007 08:37:33.208647 00767 master.go:278] Started OpenShift API at http://127.0.0.1:8080/osapi/v1beta1
I1007 08:37:33.208680 00767 master.go:310] Started OpenShift static asset server at http://127.0.0.1:8091
E1007 08:37:33.210298 00767 pod_cache.go:84] Error synchronizing container: Get http://127.0.0.1:10250/podInfo?podID=hello-openshift: dial tcp 127.0.0.1:10250: connection refused
I1007 08:37:33.222074 00767 master.go:329] Connecting to Docker at tcp://192.168.59.103:2375
E1007 08:37:33.222863 00767 docker.go:86] Unable to parse Docker config file: unexpected end of JSON input
I1007 08:37:33.225826 00767 master.go:372] Started Kubernetes Proxy
I1007 08:37:33.225891 00767 master.go:408] Started Kubernetes Scheduler
I1007 08:37:33.225907 00767 master.go:381] Started Kubernetes Replication Manager
I1007 08:37:33.225923 00767 controller.go:38] Creating build controller with timeout=1200

I also see the below JSON with http://127.0.0.1:8080/osapi/v1beta1/templateConfigs

{"kind":"Status","creationTimestamp":null,"apiVersion":"v1beta1","namespace":"","status":"Failure","message":"template.Storage.List() is not implemented.","code":500}

pod list - http://127.0.0.1:8080/api/v1beta1/pods?labels=

{"kind":"PodList","creationTimestamp":null,"selfLink":"/api/v1beta1/pods","resourceVersion":5,"apiVersion":"v1beta1","namespace":"","items":[{"id":"hello-openshift","creationTimestamp":"2014-10-07T08:14:45+02:00","resourceVersion":4,"namespace":"default","labels":{"name":"hello-openshift"},"desiredState":{"manifest":{"version":"v1beta1","id":"hello-openshift","uuid":"3baa6fdf-4de9-11e4-a12d-3c15c2c0c8a4","volumes":null,"containers":[{"name":"hello-openshift","image":"openshift/hello-openshift","ports":[{"hostPort":6061,"containerPort":8080,"protocol":"TCP"}],"imagePullPolicy":""}],"restartPolicy":{"always":{}}},"status":"Running","host":"127.0.0.1"},"currentState":{"manifest":{"version":"","id":"","volumes":null,"containers":null,"restartPolicy":{}},"status":"Running","host":"127.0.0.1","podIP":"172.17.0.2","info":{"hello-openshift":{"state":{"running":{}},"restartCount":2,"detailInfo":{"Id":"927810f3a398ce3f9a6f78d28652e234de3ba6da3972023a6ee66bb39cadf93f","Created":"2014-10-07T06:37:34.56439436Z","Path":"/hello_openshift","Config":{"Hostname":"hello-openshift","ExposedPorts":{"8080/tcp":{}},"Env":["SERVICE_HOST=127.0.0.1","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Image":"openshift/hello-openshift","Entrypoint":["/hello_openshift"]},"State":{"Running":true,"Pid":803,"StartedAt":"2014-10-07T06:37:34.76357757Z","FinishedAt":"0001-01-01T00:00:00Z"},"Image":"0f9b5af01f3299c3865085a1180a5003ba156d20b445cbb5bee8fa4a029aa5bb","NetworkSettings":{},"ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/5c68cfefe9e7ccf8d1cfbd8d63df592c3df252caa6ae882d0ca0e6b1317895bd/resolv.conf","HostsPath":"/mnt/sda1/var/lib/docker/containers/5c68cfefe9e7ccf8d1cfbd8d63df592c3df252caa6ae882d0ca0e6b1317895bd/hosts","Name":"/k8s_hello-openshift.4ee297d0_hello-openshift.etcd_3baa6fdf-4de9-11e4-a12d-3c15c2c0c8a4_55ebcae8","Driver":"aufs","HostConfig":{"PortBindings":{"8080/tcp":[{"HostPort":"6061"}]},"NetworkMode":"container:5c68cfefe9e7ccf8d1cfbd8d63df592c3df252caa6ae882d0ca0e6b1317895bd","RestartPolicy":{}}}},"net":{"state":{"running":{}},"restartCount":2,"detailInfo":{"Id":"5c68cfefe9e7ccf8d1cfbd8d63df592c3df252caa6ae882d0ca0e6b1317895bd","Created":"2014-10-07T06:37:31.18807863Z","Path":"/pause","Config":{"Hostname":"hello-openshift","ExposedPorts":{"8080/tcp":{}},"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Image":"kubernetes/pause:latest","Entrypoint":["/pause"]},"State":{"Running":true,"Pid":774,"StartedAt":"2014-10-07T06:37:31.43614325Z","FinishedAt":"0001-01-01T00:00:00Z"},"Image":"6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27","NetworkSettings":{"IPAddress":"172.17.0.2","IPPrefixLen":16,"Gateway":"172.17.42.1","Bridge":"docker0","Ports":{"8080/tcp":[{"HostIP":"0.0.0.0","HostPort":"6061"}]}},"ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/5c68cfefe9e7ccf8d1cfbd8d63df592c3df252caa6ae882d0ca0e6b1317895bd/resolv.conf","HostnamePath":"/mnt/sda1/var/lib/docker/containers/5c68cfefe9e7ccf8d1cfbd8d63df592c3df252caa6ae882d0ca0e6b1317895bd/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/5c68cfefe9e7ccf8d1cfbd8d63df592c3df252caa6ae882d0ca0e6b1317895bd/hosts","Name":"/k8s_net.77e08403_hello-openshift.etcd_3baa6fdf-4de9-11e4-a12d-3c15c2c0c8a4_0860ca3c","Driver":"aufs","HostConfig":{"PortBindings":{"8080/tcp":[{"HostPort":"6061"}]},"RestartPolicy":{}}}}}}}]}

@jstrachan
Copy link
Contributor Author

FWIW I'm thinking this isn't anything to do with OS X; its more underlying "openshift kube " CLI issues?

@jstrachan
Copy link
Contributor Author

@rawlingsj I raised a separate #182 to track the Pod IP address issue when using non-linux and boot2docker

@VojtechVitek
Copy link
Contributor

@jstrachan yes, given the
$ curl -d @template.json http://127.0.0.1:8080/osapi/v1beta1/templateConfigs
worked for you just fine, the other command
openshift kube process -c template.json
should work too, as it's doing basically the same thing. It's probably a bug in kube client, trying to POST the data to the wrong endpoint (missing /osapi prefix). I can't reproduce this yet, though. @mfojtik ?

@VojtechVitek
Copy link
Contributor

@jstrachan fyi, the http://127.0.0.1:8080/osapi/v1beta1/templateConfigs accepts only POST method. The other methods returns the "not implemented" error and it's fine.

@jstrachan
Copy link
Contributor Author

@VojtechVitek BTW are you using an up to date master of openshift/origin? I get these same errors in vagrant too. I think these are just gremlins in the kube CLI client though....

@VojtechVitek
Copy link
Contributor

@jstrachan can you try

export KUBERNETES_MASTER=http://127.0.0.1:8080
openshift kube list pods

and

export KUBERNETES_MASTER=
openshift kube list pods

@jstrachan
Copy link
Contributor Author

Here you go:

jstrachan:/tmp/$ export KUBERNETES_MASTER=http://127.0.0.1:8080
jstrachan:/tmp/$ openshift kube list pods
ID                                     Image(s)                   Host                Labels                                                                          Status
----------                             ----------                 ----------          ----------                                                                      ----------
redis-master-2                         dockerfile/redis           127.0.0.1/          name=redis-master,template=guestbook                                            Waiting
f77f27e3-4e01-11e4-8a20-3c0754574d78   brendanburns/php-redis     127.0.0.1/          name=frontend,replicationController=frontendController,template=guestbook       Running
f77f53cd-4e01-11e4-8a20-3c0754574d78   brendanburns/php-redis     /                   name=frontend,replicationController=frontendController,template=guestbook       Waiting
f77fd4a8-4e01-11e4-8a20-3c0754574d78   brendanburns/php-redis     /                   name=frontend,replicationController=frontendController,template=guestbook       Waiting
f8b964e0-4e01-11e4-8a20-3c0754574d78   brendanburns/redis-slave   127.0.0.1/          name=redisslave,replicationController=redisSlaveController,template=guestbook   Waiting
f8b97b1c-4e01-11e4-8a20-3c0754574d78   brendanburns/redis-slave   /                   name=redisslave,replicationController=redisSlaveController,template=guestbook   Waiting

jstrachan:/tmp/$
jstrachan:/tmp/$
jstrachan:/tmp/$ export KUBERNETES_MASTER=
jstrachan:/tmp/$ openshift kube list pods
ID                                     Image(s)                   Host                Labels                                                                          Status
----------                             ----------                 ----------          ----------                                                                      ----------
redis-master-2                         dockerfile/redis           127.0.0.1/          name=redis-master,template=guestbook                                            Waiting
f77f27e3-4e01-11e4-8a20-3c0754574d78   brendanburns/php-redis     127.0.0.1/          name=frontend,replicationController=frontendController,template=guestbook       Running
f77f53cd-4e01-11e4-8a20-3c0754574d78   brendanburns/php-redis     /                   name=frontend,replicationController=frontendController,template=guestbook       Waiting
f77fd4a8-4e01-11e4-8a20-3c0754574d78   brendanburns/php-redis     /                   name=frontend,replicationController=frontendController,template=guestbook       Waiting
f8b964e0-4e01-11e4-8a20-3c0754574d78   brendanburns/redis-slave   127.0.0.1/          name=redisslave,replicationController=redisSlaveController,template=guestbook   Waiting
f8b97b1c-4e01-11e4-8a20-3c0754574d78   brendanburns/redis-slave   /                   name=redisslave,replicationController=redisSlaveController,template=guestbook   Waiting

@jstrachan
Copy link
Contributor Author

BTW the above was the output of me running hack/test-cmd.sh btw :)

@VojtechVitek
Copy link
Contributor

I think I got it. Since you have KUBERNETES_MASTER=http://127.0.0.1:8080/ with the slash at the end, the kube client then builds /api/v1beta1/pods on top of it and doesn't clean up the double slash in the path http://127.0.0.1:8080//api/v1beta1/pods and fails because of it.

I will have a fix for this later today.

@jstrachan @rawlingsj Thanks for the detailed reports. Much appreciated!

@jstrachan
Copy link
Contributor Author

AHA!!!! Many thanks @VojtechVitek - sorry for not spotting that!

@jstrachan
Copy link
Contributor Author

adding this fixes everything here too:

export KUBERNETES_MASTER=http://127.0.0.1:8080

deads2k pushed a commit to deads2k/origin that referenced this issue May 17, 2016
danwinship pushed a commit to danwinship/origin that referenced this issue Jun 24, 2016
Minor: pod-network CLI examples to use # for comments
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants