2015-04-03 21:54:09 +00:00
|
|
|
# build the hyperkube image.
|
|
|
|
|
2015-05-18 23:51:39 +00:00
|
|
|
VERSION=v0.17.0
|
2015-04-03 21:54:09 +00:00
|
|
|
|
|
|
|
all:
|
2015-04-25 07:39:33 +00:00
|
|
|
cp ../../saltbase/salt/helpers/safe_format_and_mount .
|
2015-04-27 04:51:37 +00:00
|
|
|
curl -O https://storage.googleapis.com/kubernetes-release/release/${VERSION}/bin/linux/amd64/hyperkube
|
2015-04-03 21:54:09 +00:00
|
|
|
docker build -t gcr.io/google_containers/hyperkube:${VERSION} .
|
|
|
|
gcloud preview docker push gcr.io/google_containers/hyperkube:${VERSION}
|
|
|
|
|
|
|
|
.PHONY: all
|