Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Kubernetes 101

Labs

Requirements

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