Files
linuxkit/projects/kubernetes
Rolf Neugebauer 733e8f3307 config: Remove unused binfmt container
A few YAML files include the binfmt container, where it's not really
needed. Remove it to make the samples simpler.

Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
2017-04-09 10:09:00 +01:00
..
2017-04-07 10:09:10 +01:00
2017-04-06 17:57:48 +01:00
2017-04-07 10:09:10 +01:00

Kubernetes

This project aims to demonstrate how one can create minimal and immutable Kubernetes OS images with Moby.

Make sure to cd projects/kubernetes first.

Build container & OS images:

make

Boot Kubernetes master OS image using hyperkit on macOS:

../../bin/moby run hyperkit -mem 4096 -cpus 2 kube-master

Manually initialise master with kubeadm:

runc exec kubelet kubeadm init --skip-preflight-checks

Once kubeadm exits, try runc exec kubelet kubectl get nodes.