k3s/cluster/images/hyperkube/Makefile

12 lines
364 B
Makefile
Raw Normal View History

# build the hyperkube image.
2015-05-18 23:51:39 +00:00
VERSION=v0.17.0
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