Learn Kubernetes: Ingress — Use Ingress for routing via the request path
In this series of stories, you will learn how to use Kubernetes. Today, let’s see how to expose externally a service with an Ingress
Table of contents:
- Use Ingress,
- Use Ingress for routing by domain name,
- Use Ingress for routing via the request path.
Let’s create a deployment based on nginx
. In first, create a deployment YAML manifest:
kubectl create deployment --image=nginx nginx…