Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 2.3 KB

README.md

File metadata and controls

42 lines (30 loc) · 2.3 KB

Kubernetes The Hard Way

This tutorial walks you through setting up Kubernetes the hard way on a local machine using a hypervisor. This guide is not for someone looking for a fully automated tool to bring up a Kubernetes cluster. Kubernetes The Hard Way is optimized for learning, which means taking the long route to ensure you understand each task required to bootstrap a Kubernetes cluster.

The results of this tutorial should not be viewed as production ready.

Target Audience

The target audience for this tutorial is someone who wants to understand the fundamentals of Kubernetes and how the core components fit together.

Cluster Details

Kubernetes The Hard Way guides you through bootstrapping a highly available Kubernetes cluster with end-to-end encryption between components and RBAC authentication.

Node configuration

We will be building the following:

  • Three control plane nodes (controlplane01, controlplane02 and controlplane03) running the control plane components as operating system services.
  • Two worker nodes (node01 and node02)
  • One loadbalancer VM running HAProxy to balance requests between the three API servers and provide the endpoint for your KUBECONFIG.

Labs