Cassandra example: daemonset volume fix, readme cleanup, update to new gcr

image consistent with the code base.
Change the label on the daemonset to 'app'.
This commit is contained in:
Amy Unruh
2016-02-21 08:36:22 -08:00
parent 7191e6a435
commit 04a585458c
7 changed files with 173 additions and 50 deletions

View File

@@ -14,7 +14,7 @@
# build the cassandra image.
VERSION=v7
VERSION=v8
all: build
@@ -24,9 +24,9 @@ kubernetes-cassandra.jar: ../java/* ../java/src/io/k8s/cassandra/*.java
cd ../java && mvn clean
build: kubernetes-cassandra.jar
docker build -t gcr.io/google_containers/cassandra:${VERSION} .
docker build -t gcr.io/google_samples/cassandra:${VERSION} .
push: build
gcloud docker push gcr.io/google_containers/cassandra:${VERSION}
gcloud docker push gcr.io/google_samples/cassandra:${VERSION}
.PHONY: all build push