Validating Kong Route Paths with a Custom Ruleset

Kong Gateway’s declarative configuration approach is powerful, but it opens the door to subtle routing mistakes that can break your API in production. One of the most common issues I’ve recently encountered is malformed route paths: missing path arrays, empty strings, or accidentally defining paths as strings instead of arrays. These errors often slip through manual reviews and only surface when traffic starts failing. To catch these configuration errors early in our CI pipeline, I built a custom ruleset that enforces proper route path structure before deployment....

July 14, 2025 · 3 min · Kuldeep Bhati

Kong Gateway Hybrid Mode Setup - Using Helm 🚀

Introduction Today, I’m excited to share a detailed guide on setting up Kong Gateway in hybrid mode using Helm charts. This setup provides a base where you can start playing around the Kong Hybrid setup and build and expand your own setup on top of this. We’ll be using my GitHub repository which contains all the necessary configurations and scripts. Prerequisites Before we dive in, ensure you have: A Kubernetes cluster (Minikube, GKE, EKS, or AKS)....

October 4, 2024 · 2 min · Kuldeep Bhati