Kubernetes the Hard Way Deep Dive -- 01 & 02 (System Set Up)
April 12, 2020
Categories: Tags:TL;DR: Setting up GCP account, and installing various software prerequisites (gcloud
, tmux
, cfssl
and kubectl
)
KTHW Lessons:
Is this the Matrix?
Table of Contents:
GCP + gcloud
I don’t have anything to add for this step. The instructions are complete and will get your account/system set up to proceed.
A GCP project needs to be configured with the necessary APIs enabled, and gcloud will allow us to interact with GCP via the command line.
tmux
Embarrassingly, I had never used tmux prior to this. 😳😳😳
tmux, short for “Terminal Multiplexer” is a program that allows for splitting up your terminal into multiple panes and tabs and managing the associated shell sessions. At first glance, this may sound like the Split Pane
feature of the macOS terminal or the Split Horizontally/Vertically
feature of iterm2, but the difference is that shell sessions are managed independently from the terminal window.
There are a variety of benefits this enables, but the feature Kelsey is suggesting for this tutorial is the ability to synchronize inputs across multiple terminal panes. This will allow us to ssh
into multiple virtual machines, synchronize those sessions, and then execute a series of commands in parallel.
To do this we can use the following workflow:
- Install tmux (
$ brew install tmux
if using Homebrew on macOS) - Start a new tmux session with
$ tmux
- Split the current pane twice using
Ctrl + b
->%
- Navigate between panes using
Ctrl + b
->←
OR→
- SSH into the relevant virtual machines (
gcloud ssh ...
) in each of the panes - Once connected, synchronize the panes using
Ctrl + b
->:setw synchronize-panes
- Execute the tutorial commands
- After finishing, shut down all running tmux sessions using
$ tmux kill-server
This is just one very specific workflow using tmux. For more information about getting started with some of the other tmux functionality (and lots of other useful tools/skills adjacent to programming), check out The MIT Missing Semester Course.
CFSSL & cfssljson
CFSSL (of which cfssljson is a sub-project) is an open source project from Cloudflare that is “both a command line tool and an HTTP API server for signing, verifying, and bundling TLS certificates”.
These will be used during 04-certificate-authority.md to provision a certificate authority, and then use it to generate TLS certificates and private keys for many k8s system components.
I will go into more detail about what that actually means in the post corresponding to that step in the tutorial. For now, simply installing the software and verifying the versions are correct is sufficient.
kubectl
Kubectl
(It’s okay… nobody else knows how to pronounce it either) is a command line tool for interacting with Kubernetes clusters. Once the cluster is up and running, kubectl
will be the primary mechanism for getting information about the cluster (and things running within it), as well deploying and modifying software running within the cluster.
Kelsey’s instructions for installation are sufficient, but if on MacOS, it can also be installed with Homebrew using:
$ brew install kubectl
At this point, your computer should have all the necessary prerequisite software and we can start setting up the cloud resources needed for the cluster.
See you in the next post!