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

@@ -2,7 +2,7 @@ apiVersion: v1beta1
desiredState:
manifest:
containers:
- image: busybox
- image: gcr.io/google_containers/busybox
name: liveness
livenessProbe:
exec:

View File

@@ -2,7 +2,7 @@ apiVersion: v1beta1
desiredState:
manifest:
containers:
- image: kubernetes/liveness
- image: gcr.io/google_containers/liveness
name: liveness
livenessProbe:
httpGet:

View File

@@ -4,10 +4,10 @@ server: server.go
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-w' ./server.go
container: server
docker build -t kubernetes/liveness .
docker build -t gcr.io/google_containers/liveness .
push: container
docker push kubernetes/liveness
gcloud preview docker push gcr.io/google_containers/liveness
clean:
rm -f server

View File

@@ -18,7 +18,7 @@ spec:
- "/bin/sh"
- "-c"
- "echo ok > /tmp/health; sleep 10; echo fail > /tmp/health; sleep 600"
image: busybox
image: gcr.io/google_containers/busybox
livenessProbe:
exec:
command:

View File

@@ -16,7 +16,7 @@ spec:
containers:
- command:
- "/server"
image: kubernetes/liveness
image: gcr.io/google_containers/liveness
livenessProbe:
httpGet:
path: "/healthz"