kubernetes/cluster/images/hyperkube
k8s-merge-robot 1cd93cb1d6 Merge pull request #23250 from huggsboson/patch-1
Automatic merge from submit-queue

Use kube-system namespace

Fixes #23153.

Sadly, kube-system isn't automatically created, so people need to make
sure to create it in their turnup scripts.  Also after creating
kube-system it can take 10+ seconds for master and proxy to show up.

I tested the equivalent of these changes locally, but not these changes
themselves as I don't have a dev/build env up, so please read carefully
and maybe try them out!
2016-04-25 20:23:36 -07:00
..
Dockerfile Include easy-rsa in container to avoid it being downloaded at runtime 2016-04-15 21:36:54 +01:00
etcd.json Merge pull request #23250 from huggsboson/patch-1 2016-04-25 20:23:36 -07:00
kube-proxy.json Fixes #23153. 2016-03-31 14:07:31 -07:00
Makefile Build Kubernetes, etcd and flannel for arm64 and ppc64le 2016-04-14 07:29:10 +03:00
master-multi.json Fixes #23153. 2016-03-31 14:07:31 -07:00
master.json Fixes #23153. 2016-03-31 14:07:31 -07:00
README.md Build Kubernetes, etcd and flannel for arm64 and ppc64le 2016-04-14 07:29:10 +03: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 Fixes #23153. 2016-03-31 14:07:31 -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 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