May 2019
Intermediate to advanced
442 pages
11h 36m
English
To start the Kubernetes test environment, we first must ensure there's no instance of minikube running as follows:
minikube statusminikube delete
Start a new minikube instance with the following specifications:
minikube start \ --cpus=2 \ --memory=3072 \ --kubernetes-version="v1.14.0" \ --vm-driver=virtualbox
When the previous command finishes, a new Kubernetes environment should be ready to be used.
For our Kubernetes test environment, we'll be building upon the lessons learned in Chapter 5, Running a Prometheus Server, and using Prometheus Operator in our workflow. Since we already covered the Prometheus Operator setup, we'll deploy all the required components without going over each one of them.
Step into the ...
Read now
Unlock full access