Chapter 15. Extending Kubernetes

Now that you’ve seen how to install, interact with, and use Kubernetes to deploy and manage applications, we focus in this chapter on adapting Kubernetes to your needs. For the recipes in this chapter, you will need Go installed and access to the Kubernetes source code hosted on GitHub. We show how to compile Kubernetes as a whole, and how to compile specific components like the client kubectl. We also demonstrate how to use Python to talk to the Kubernetes API server and show how to extend Kubernetes with a custom resource definition.

15.1 Compiling from Source

Problem

You want to build your own Kubernetes binaries from source instead of downloading the official release binaries (see Recipe 2.9) or third-party artifacts.

Solution

Clone the Kubernetes Git repository and build from source.

If your development machine has Docker Engine installed, you can use the quick-release target of the root Makefile, as shown here:

$ git clone https://github.com/kubernetes/kubernetes.git
$ cd kubernetes
$ make quick-release
Tip

This Docker-based build requires at least 8 GB of RAM to complete. Ensure that your Docker daemon has access to that much memory. On macOS, access the Docker for Mac preferences and increase the allocated RAM.

The binaries will be located in the _output/release-stage directory, and a complete bundle will be in the _output/release-tars directory.

Alternatively, if you have a Golang environment properly set up, use the release target ...

Get Kubernetes Cookbook, 2nd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.