May 2019
Intermediate to advanced
442 pages
11h 36m
English
Ensure that there's no instance of minikube running, like so:
minikube statusminikube delete
Start a new minikube instance with the following specifications:
minikube start \ --cpus=2 \ --memory=2048 \ --kubernetes-version="v1.14.0" \ --vm-driver=virtualbox
When the previous command finishes, a new Kubernetes environment should be ready to be used. You may access its dashboard by using the following command, which will open the Kubernetes dashboard address in your default browser:
minikube dashboard
To proceed with the deployment of our example, ensure that you move into the correct repository path, as shown here:
cd chapter05/provision/kubernetes/operator
Like the previous example, we'll be creating a new namespace ...
Read now
Unlock full access