traefik

Programmers working on computer program

How To Whitelist IPs Using Traefik Ingress Controller

Reading Time: 3 minutes Hi Readers, In this blog, we are going to see how to Whitelist IPs Using Traefik Ingress Controller. In this blog, we are using version 2 of the Traefik ingress controller for exposing services to the internet, the IPs that are whitelisted only those IPs will be able to access your domain. What is IP Whitelisting? IP whitelisting will allow you to create lists of Continue Reading

How to terminate TLS certificate at traefik Load Balancer

Reading Time: 4 minutes Traefik is a reverse proxy which we can use as an ingress controller for the Kubernetes. Nowadays, security is one the most important thing. So, people prefer https over http. But the challenges with https are managing the TLS certificate, renewing them. Now cert-manager solves this challenge of managing certificates. Traefik also has the built in feature where it can issue certifcate from Let’s Encrypt. Continue Reading

kubernetes

How to enforce TLS using Traefik Middleware

Reading Time: 3 minutes Traefik is reverse proxy and load balancer that makes deploying microservices easy. We can deploy Traefik in the existing infrastructure and we can configure it dynamically. We will just need to point to our orchestrator. There is a feature of middleware which we can use to tweak the requests. With the release of Traefik-v2 lots of features are added. Some of these features are: Middlewares Continue Reading

Introduction to a Modern Reverse-Proxy: Traefik

Reading Time: 3 minutes Traefik is an open source API gateway, written in Golang and was developed in a Unix-centric way. It is designed to simplify the complexity regarding microservices operations. Traefik performs auto-configuration of services, which means that the developer only needs to worry about developing and deploying applications. Traefik auto-configures with sensible defaults and sends a request to the said service. With changing requirements and needs of Continue Reading