Best practice about multiple proxies #7218
-
Hi, I'm wondering what are the best practices for multiple proxies or multiple zones on Kubernetes. I want to expose an external zone for my business API and an internal zone locally accessible for, say, monitoring. Thanks for your inputs, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can have multiple Ingress Controllers for your K8s cluster. |
Beta Was this translation helpful? Give feedback.
You can have multiple Ingress Controllers for your K8s cluster.
For the public zone, an external Load Balancer (e.g. AWS Network Load Balancer) can be useful, and for the private zone, a NodePort service can be used.
Please reference multiple-ingress-controllers for details.