The Example in Detail
Explore how to implement Docker-based microservices on Kubernetes by following detailed setup instructions, using deployment scripts, and configuring services through YAML files. Understand pod creation, service exposure, and managing deployments to effectively run microservices in a Kubernetes cluster.
We'll cover the following...
Setup #
The example is accessible at https://github.com/ewolff/microservice-kubernetes. https://github.com/ewolff/microservice-kubernetes/blob/master/HOW-TO-RUN.md explains in detail how to install the required software for running the example.
The following steps are necessary for running the example:
-
Minikube as minimal Kubernetes installation has to be installed. Instructions for this can be found at https://github.com/kubernetes/minikube#installation.
-
kubectl is a command line tool for handling Kubernetes and also has to be installed. Its installation is described at https ...