k3s/cluster/images/hyperkube/Makefile

13 lines
418 B
Makefile
Raw Normal View History

# build the hyperkube image.
2015-07-28 23:35:56 +00:00
VERSION=v1.0.1
all:
cp ../../saltbase/salt/helpers/safe_format_and_mount .
curl -O https://storage.googleapis.com/kubernetes-release/release/${VERSION}/bin/linux/amd64/hyperkube
2015-06-15 02:38:50 +00:00
sed -i "s/VERSION/${VERSION}/g" master-multi.json master.json
docker build -t gcr.io/google_containers/hyperkube:${VERSION} .
2015-06-18 19:18:53 +00:00
gcloud docker push gcr.io/google_containers/hyperkube:${VERSION}
.PHONY: all