k3s/cluster/images/hyperkube
Jimmy Jones 0521ebad41 Include easy-rsa in container to avoid it being downloaded at runtime 2016-04-15 21:36:54 +01:00
..
Dockerfile Include easy-rsa in container to avoid it being downloaded at runtime 2016-04-15 21:36:54 +01:00
Makefile Build Kubernetes, etcd and flannel for arm64 and ppc64le 2016-04-14 07:29:10 +03:00
README.md Build Kubernetes, etcd and flannel for arm64 and ppc64le 2016-04-14 07:29:10 +03:00
etcd.json Build Kubernetes, etcd and flannel for arm64 and ppc64le 2016-04-14 07:29:10 +03:00
kube-proxy.json Simplify local docker setup. 2015-12-11 15:53:44 +01:00
master-multi.json Update the DNS template from cluster/addons/dns and combine into one file. Make DNS working on docker and docker-multinode 2016-02-25 21:59:07 +02:00
master.json Update the DNS template from cluster/addons/dns and combine into one file. Make DNS working on docker and docker-multinode 2016-02-25 21:59:07 +02:00
setup-files.sh Fix so setup-files don't recreate/invalidate certificates that already exist 2016-04-01 21:23:58 +03:00
teardown.sh Update some flags 2015-11-20 11:47:31 -08:00
turnup.sh Remove -v /dev:/dev from docker and docker-multinode 2016-02-07 22:15:20 +02:00

README.md

hyperkube

hyperkube is an all-in-one binary for the Kubernetes server components Also, it's very easy to run this hyperkube setup dockerized. See http://kubernetes.io/docs/getting-started-guides/docker/ for up-to-date commands.

hyperkube is built for multiple architectures and pushed automatically on every release.

How to release by hand

# First, build the binaries
$ build/run.sh hack/build-cross.sh

# Build for linux/amd64 (default)
$ make push VERSION={target_version} ARCH=amd64
# ---> gcr.io/google_containers/hyperkube-amd64:VERSION
# ---> gcr.io/google_containers/hyperkube:VERSION (image with backwards-compatible naming)

$ make push VERSION={target_version} ARCH=arm
# ---> gcr.io/google_containers/hyperkube-arm:VERSION

$ make push VERSION={target_version} ARCH=arm64
# ---> gcr.io/google_containers/hyperkube-arm64:VERSION

$ make push VERSION={target_version} ARCH=ppc64le
# ---> gcr.io/google_containers/hyperkube-ppc64le:VERSION

If you don't want to push the images, run make or make build instead

Analytics