January 2018
Intermediate to advanced
318 pages
7h 6m
English
We will be installing Kubeless on the single-node Minikube cluster we installed and configured in the previous chapter. The first thing we need to do is ensure that we are starting with a clean Kubernetes installation. To do this, we simply need to run the following two commands:
$ minikube delete$ minikube start
Now that we have our fresh single-node Kubernetes cluster up-and-running, we need to create a namespace for Kubeless by running:
$ kubectl create ns kubeless
And then install ...
Read now
Unlock full access