e2e images pulled from gcr.io

This commit is contained in:
Jeff Lowdermilk
2015-03-31 10:25:20 -07:00
parent 506887515d
commit 2d8e93f8b4
33 changed files with 48 additions and 48 deletions

View File

@@ -65,7 +65,7 @@ $ ./cluster/kubectl.sh rollingupdate update-demo-nautilus --update-period=10s -f
```
The rollingupdate command in kubectl will do 2 things:
1. Create a new replication controller with a pod template that uses the new image (`kubernetes/update-demo:kitten`)
1. Create a new replication controller with a pod template that uses the new image (`gcr.io/google_containers/update-demo:kitten`)
2. Resize the old and new replication controllers until the new controller replaces the old. This will kill the current pods one at a time, spinnning up new ones to replace them.
Watch the [demo website](http://localhost:8001/static/index.html), it will update one pod every 10 seconds until all of the pods have the new image.

View File

@@ -10,7 +10,7 @@ desiredState:
manifest:
containers:
- name: update-demo
image: kubernetes/update-demo:kitten
image: gcr.io/google_containers/update-demo:kitten
ports:
- containerPort: 80
protocol: TCP

View File

@@ -11,7 +11,7 @@ desiredState:
manifest:
containers:
- name: update-demo
image: kubernetes/update-demo:nautilus
image: gcr.io/google_containers/update-demo:nautilus
ports:
- containerPort: 80
protocol: TCP

View File

@@ -13,7 +13,7 @@ spec:
version: kitten
spec:
containers:
- image: kubernetes/update-demo:kitten
- image: gcr.io/google_containers/update-demo:kitten
name: update-demo
ports:
- containerPort: 80

View File

@@ -14,7 +14,7 @@ spec:
version: nautilus
spec:
containers:
- image: kubernetes/update-demo:nautilus
- image: gcr.io/google_containers/update-demo:nautilus
name: update-demo
ports:
- containerPort: 80