How Do You Set Up WAF in Your Kubernetes Clusters?

0
1
Asked By TechyNinja_42 On

I'm curious about how everyone is implementing Web Application Firewalls (WAF) in their Kubernetes clusters. Are you using an external edge server outside of the cluster, or are you handling it internally with setups like Ingress, a reverse proxy like Nginx, or even a sidecar approach?

5 Answers

Answered By EdgeCaseExplorer On

We use Cloudflare with WAF enabled, and it goes through an edge WAF before reaching our Ingress. However, we’re considering ditching the edge WAF and just running Nginx directly in front of the Ingress with the Metadefender ICAP module.

CostCurious34 -

Do you know how much Metadefender costs?

Answered By CloudMaster99 On

I’ve set it up with CloudFront feeding into a WAF before hitting our Kubernetes ALB. It’s been working smoothly so far!

Answered By K8sSecurityGuru On

Calico does offer a sort of WAF for Kubernetes clusters, but keep in mind that it’s mainly available with their enterprise version, not the open source one.

Answered By NLB_Solutions On

Has anyone attempted using NLB with Cloudflare? I tried that setup in front of our Nginx Ingress Controller, but ran into some cert issues between Cloudflare and the NLB.

Answered By GCP_Dev On

If you're on GCP, we utilize the gateway API to deploy an L7 load balancer that routes directly to our pods, and the backend service policy allows integration with Cloud Armor.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.