Setting up the environment
In order to see your chart in action, you'll need to create your minikube environment by following these steps:
- Start minikube by running the
minikube start
command, as follows:$ minikube start
- Create a new namespace called
chapter5,
like this:$ kubectl create namespace chapter5
We'll use this namespace when the Guestbook chart is deployed. Now that the environment is prepared, let's begin writing the chart.