Cluster Setup

A quick guide for installing a K8s cluster. This cluster is intended for testing purposes and NOT suitable for use in Production.

Installation

Install Docker Engine

# https://docs.docker.com/engine/install/ubuntu/

# Remove existing Docker packages
for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done

# Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

# Add the repository to Apt sources:
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

Enable Containerd CNI plugin

Install Kubernetes

Install Helm

Configuration

[On MASTER] Initiate Kubernetes Master (Create Cluster)

[On WORKER] Initiate Kubernetes Worker (Join Cluster)

[On MASTER] Setup Kubernetes Dashboard

Creating a Service Account

Create file named dashboard-adminuser.yaml

Deploy config

Creating a ClusterRoleBinding

Create file named dashboard-clusterrole.yaml

Deploy config

Get secret

Generate a long-lived Bearer Token for ServiceAccount

Create file named dashboard-secret.yaml

Deploy config

Get secret

Last updated

Was this helpful?