The DevOps 2.3 Toolkit
上QQ阅读APP看书,第一时间看更新

Creating a Cluster

You know the drill. Every chapter starts by pulling the latest code from the vfarcic/k8s-specs (https://github.com/vfarcic/k8s-specs) repository, and with the creation of a new Minikube cluster.

All the commands from this chapter are available in the 05-svc.sh ( https://github.com/vfarcic/k8s-specs) Gist.
cd k8s-specs
    
git pull
    
minikube start --vm-driver=virtualbox
    
kubectl config current-context  

Now we have the latest code pulled and Minikube cluster running (again).

We can proceed with the first example of a Service.