kubernetes/cluster/images/hyperkube
k8s-merge-robot 64d185f534 Merge pull request #29474 from luxas/cni_cross
Automatic merge from submit-queue

Include CNI for all architectures in the hyperkube image

Can some of you (@jfrazelle @mikedanese) quickly lgtm this?
I'd like it if we got it merged before v1.4.0-alpha.2

It's not a huge change, I'm just cross-compiling this CNI stuff while waiting for the v0.4.0 which likely will release binaries for all arches.
2016-07-22 17:13:22 -07:00
..
cni-conf add default flannel configuration for cni 2016-07-08 11:36:17 +02:00
static-pods Merge pull request #28489 from liyimeng/patch-1 2016-07-18 17:11:35 -07:00
copy-addons.sh Remove "All rights reserved" from all the headers. 2016-06-29 17:47:36 -07:00
Dockerfile add default flannel configuration for cni 2016-07-08 11:36:17 +02:00
kube-proxy-ds.yaml Remove "All rights reserved" from all the headers. 2016-06-29 17:47:36 -07:00
Makefile Include CNI for all architectures in the hyperkube image 2016-07-23 01:03:46 +03:00
README.md Make releases work 2016-07-12 21:52:54 -07:00
setup-files.sh Remove "All rights reserved" from all the headers. 2016-06-29 17:47:36 -07:00

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 make cross

# 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