Creating a Simple Kubernetes Manifest
In my previous post, I showed you how to create a Kubernetes deployment imperatively at the command line. Although this is a quick method, it’s not a good choice for real-world scenarios. You need code that’s properly documented and version controlled. Now we’re going to use a declarative approach. In this tutorial, I’ll show you how to create a simple Kubernetes deployment with a manifest file. Make sure minikube is running with minikube start before following the steps below. Hop over to that previous tutorial if you need instructions on installing minikube and related tools. ...