Setup Cluster

In this task, we will setup a k8s cluster, see https://kubernetes.io/docs/tutorials/

Tips: you should always keep a doc window opened to learn k8s, it is the best resource you should use.

Local setup

Recommend https://kind.sigs.k8s.io/docs/user/quick-start/

# Windows
choco install kind

# Mac
brew install kind

# Create cluster
kind create cluster

# Delete cluster
kind delete cluster

Managed cluster setup

It might take 5~30 minutes to finish this task.

If you cannot setup the cluster successfully, you can use the interactive shell in docs site.

Plan B

We can use interactive tutorials to learn kubernetes.