Ingress
Understand how to use Ingress in Kubernetes.
What is Ingress?
Ingress is a Kubernetes resource that provides HTTP and HTTPS routing to services within a cluster. It exposes HTTP/S routes from outside the cluster to services within the cluster by defining rules for routing traffic based on the request's host and path.
Important
Remember, you will need to expose the Ingress controller to the external world, otherwise, the Ingress resource will not work. You can do this by using a Cloud Native Load Balancer or NodePort.
Ingress controller is not deployed by default in Kubernete cluster.
Ingress contains two main components:
- Ingress controller
- Ingress resource
Ingress controller
We will be using NGINX Ingress Controller in this example. I highly recomend you to use helm to install the Ingress controller.
Link:
Ingress resource
Ingress resource is a Kubernetes resource that defines the rules for routing traffic to the services.
Ingress backed by a single service
The following example will route all incoming traffic to the example-service
on
port 80
. See Path based routing
for more details about defaultBackend
.
Path based routing
If the user tries to access the URL that does not match the below rules, the request will be routed to the defaultBackend
service.
Name based routing
Rewrite target
More Information
In some cases, you may want to rewrite the URL path before forwarding the request to the backend service. For example, if the pay application expects requests at /
rather than /pay
, you can use the nginx.ingress.kubernetes.io/rewrite-target
annotation to achieve this.
- Meaning that when you access
http://pay-karchunt.com/pay
, it will be rewritten tohttp://pay-karchunt.com/
before being forwarded to thepay-service
. This means that thepay-service
will receive the request at the root path/
instead of/pay
, aspay-service
only expose the root path/
.
Format: replace(path, rewrite-target)
In our case: replace("/pay". "/")
replace("/something(/|2")
Any characters captured by (.*) will be assigned to the placeholder $2, which is then used as a parameter in the rewrite-target
annotation.
rewrite.bar.com/something
rewrites torewrite.bar.com/
rewrite.bar.com/something/
rewrites torewrite.bar.com/
rewrite.bar.com/something/new
rewrites torewrite.bar.com/new
TLS
Create a TLS secret
Refer this link for more information about how to create a TLS secret.
Reference the TLS secret