
* Add volume format script into hyperkube image. * Fix issue with format script on non-redhat platforms.
12 lines
364 B
Makefile
12 lines
364 B
Makefile
# build the hyperkube image.
|
|
|
|
VERSION=v0.14.2
|
|
|
|
all:
|
|
cp ../../saltbase/salt/helpers/safe_format_and_mount .
|
|
curl -O https://storage.googleapis.com/kubernetes-release/release/${VERSION}/bin/linux/amd64/hyperkube
|
|
docker build -t gcr.io/google_containers/hyperkube:${VERSION} .
|
|
gcloud preview docker push gcr.io/google_containers/hyperkube:${VERSION}
|
|
|
|
.PHONY: all
|