mirror of https://github.com/k3s-io/k3s
05cfd9c584
OS X: Fix hyperkube build by adding empty string to sed invocation |
||
---|---|---|
.. | ||
Dockerfile | ||
Makefile | ||
README.md | ||
etcd.json | ||
kube-proxy.json | ||
master-multi.json | ||
master.json | ||
setup-files.sh | ||
teardown.sh | ||
turnup.sh |
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