Questions tagged [ingress-nginx]

If you encounter issues, review the [troubleshooting docs](https://github.com/kubernetes/ingress-nginx/blob/main/docs/troubleshooting.md), [file an issue](https://github.com/kubernetes/ingress-nginx/issues), or talk to us on the [#ingress-nginx channel](https://kubernetes.slack.com/messages/ingress-nginx) on the Kubernetes Slack server.

If you encounter issues, review the troubleshooting docs, file an issue, or talk to us on the #ingress-nginx channel on the Kubernetes Slack server.

105 questions
0
votes
0 answers

Can't create an internal NLB load balancer for ingress-nginx ingress controller for EKS

Tried various annotations including the following one (based on https://artifacthub.io/packages/helm/ingress-nginx/ingress-nginx#additional-internal-load-balancer). But the load balancer which is intended to be internal is created for Service…
AndCode
  • 384
  • 1
  • 10
0
votes
0 answers

How does Ingress communicate with HTTPS backend?

I am trying to understand how ssl termination works in ingress controller. I have an HTTPS application running in K8S and behind ingress controller. Does ingress controller decrypt the HTTPS traffic from client and encrypt it again with its…
ROSS XIE
  • 29
  • 5
0
votes
0 answers

ingress-nginx, tearget-rewrite and Sonarqube

The Issue Hi, I am deploying Sonarqube onto an AKS cluster using the Helm chart: https://github.com/SonarSource/helm-chart-sonarqube/tree/master/charts/sonarqube I am using the kubernetes ingress-nginx (not nginx-ingress) controller on the…
0
votes
1 answer

Ingress-nginx: Is there any way to have rate limiting on $remote_user?

I want to apply rate limiting on remote_user in ingress-nginx but unable to find any way to do that. I tried having limit_req_zone directive in http-snippet and using limit_req zone in server-snippet annotation but it does not work. It gives me:…
Ritik Jain
  • 143
  • 1
  • 6
0
votes
0 answers

Does NGINX running as a proxy handle upstream requests in the same way it handles incoming connections?

Context I've encountered a scenario with NGINX where the server can be easily overwhelmed by my load testing scripts in the event that it is handling multiple connections to very slow upstream servers. This has lead me to wonder about the way that…
0
votes
0 answers

Nginx updating Ingress status for ignored ingress

I have updated the to version nginx/1.19.10, with the new update, the nginx monitors all the ingress even the one managed by AWS, whenever the nginx starts, I get the error: I0710 11:23:55.798939 7 store.go:426] "Ignoring ingress because of…
0
votes
0 answers

ingress-nginx not listening on Port 80

I have a KinD cluster on my laptop where I am attempting to use ingress-nginx to provide a way to access UIs for services running in the cluster, at this stage just prometheus and argocd. I'm having an infuriating issue when installing with helm, it…
800711
  • 3
  • 2
0
votes
0 answers

Ingress-nginx and AWS NLB - cant access service behind

I have an AWS EKS Cluster (ver. 1.24) I use ingress-nginx helm chart (ver. 4.7.1): dependencies: - name: ingress-nginx version: 4.7.1 repository: https://kubernetes.github.io/ingress-nginx condition: ingress-nginx.enabled alias:…
0
votes
0 answers

How I do send invalid requests to custom error pages when configuring ingress-nginx?

I'm not sure why only the 500 error is not being redirected to the custom error pages while other errors are working fine. test address: test.example.com #1. [ request ] GET / HTTP/1.1 Host: test.example.com [ result ] 200 OK succeed(No Error) #2. […
Sil
  • 1
  • 1
0
votes
0 answers

Kubernetes nginx-ingress with cloudflare tunnel

I have a kubernetes cluster with ingress setup as a ingress-nginx. The load balancer used is NLB(Netwwork Load Balancer) and is internet-facing. Is there a way to setup cloudflared tunnel with the ingress based on the domain associated with the…
dempti
  • 336
  • 1
  • 3
  • 15
0
votes
0 answers

Can't install ingress-nginx with helm_release in Terraform

I am new In terraform and I create a Kubernetes Cluster in GKE and I want to install ingress-nginx with helm. So, I wrote the following: provider "helm" { kubernetes { host = google_container_cluster.primary.endpoint …
0
votes
0 answers

how to route request to cloudfront in ingress?

i have a file (ingress-service.yaml) where rules regarding routing are as spec: rules: - http: paths: - path: /api/?(.*) pathType: Prefix backend: service: name:…
0
votes
1 answer

Kubernetes Community NGINX Ingress Controller Returns HTTP 400 For All Requests

I'm attempting to set up a path rewriting ingress to my backend service using the following: Kubernetes NGINX ingress controller (https://kubernetes.github.io/ingress-nginx), version 1.6.4 (built on Nginx 1.21.6) Running in Docker Desktop 4.9.0…
Mark
  • 4,970
  • 5
  • 42
  • 66
0
votes
0 answers

ELB doesn't add the new instances after scaling up

I am doing some tests with ingress-nginx load balancer. When I initially deployed it, it automaticaly creates an ELB and works perfectly fine. However, when I scale down the node group and then scale it back up. I don't see ELB registering the new…
0
votes
1 answer

Ingress-nginx is in CrashLoopBackOff after K8s upgrade

After upgrading Kubernetes node pool from 1.21 to 1.22, ingress-nginx-controller pods started crashing. The same deployment has been working fine in EKS. I'm just having this issue in GKE. Does anyone have any ideas about the root cause? $ kubectl…