dnaeon / hyperkube

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hyperkube

As part of kubernetes/kubernetes#88676, the hyperkube image is be removed from the Kubernetes releases. The first release not producing a hyperkube image anymore is v1.19.

This repository is used to produce a Docker image that contains the following Kubernetes binaries:

  • kubelet
  • kubectl

The rationale behind it is that Gardener requires those two binaries to present on each worker nodes of shoot clusters. While it could simply download them from the internet for the clusters provisioned to hyperscalers, clusters provisioned to private/fenced environments do not necessarily have access to the internet. However, the worker nodes will always have access to a image registry by design (otherwise, nothing will function at all). Hence, the hyperkube image can be downloaded from the configured image registry and be used for copying over the binaries from the image to the host.

The image is as minimal as possible to only make the binaries portable. It is not designed in a way to be used directly.

How To Build It?

Build image with the version stored in KUBERNETES_VERSION:

make docker-image

Build image with a special version:

make docker-image KUBERNETES_VERSION=v1.19.0

Limitations

Currently, there is no automatism that would build the images on new releases of Kubernetes. The reasons are that the CI system does not support the requirements out-of-the-box yet for scripts in the .ci folder:

  • No (easy) possibility to push branch or tags
  • No (easy) possibility to build container images

Therefore, the following script must ran manually. It will detect for which versions a new image must be built, build and push it, and push the Git tag.

Prerequisites:

  • You must use a version of Docker that supports BuildKit.
  • You have to use a multi platform driver for Docker (e.g. by running docker buildx create --use).
  • You must be eligible to git push tags to this repository.
  • You must configure gcloud to authenticate with a valid GCP service account that allows pushing to the Gardener GCR.
    • gcloud auth activate-service-account --key-file=<path-to-key-file>
    • gcloud auth configure-docker
.ci/check-and-release

Learn More!

Please find further resources about out project here:

About

License:Other


Languages

Language:Shell 44.2%Language:Python 26.4%Language:Makefile 16.9%Language:Dockerfile 12.5%