- Linux
- Docker
- Kind (see Kind installation)
Kind is a kubernetes implementation in docker to run a local cluster. It will be our learning play field. More info: https://github.com/kubernetes-sigs/kind
Download the compiled binary:
curl -Lo ./kind "https://kind.sigs.k8s.io/dl/v0.9.0/kind-$(uname)-amd64"
chmod +x ./kind
sudo mv ./kind /usr/local/bin/kind
Create a local Kubernetes cluster!
kind create cluster
Create a dedicated namespace
kubectl create namespace platform101