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
1 answer

Nginx 400 Bad Request in Digital Ocean Kubernetes environment

The domain configured is ticket.devaibhav.live ping ticket.devaibhav.live is pointing to the correct IP address of the load balancer provisioned by Digital Ocean. I haven't configured SSL on the cluster yet, but if I try to access my website…
Vaibhav07
  • 223
  • 2
  • 10
0
votes
1 answer

kubernetes ingress-nginx ignore special characters in path

I'm trying to have a rule listening to a specific path containing a dollar sign like this: apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: metadata-ingress annotations: nginx.ingress.kubernetes.io/enable-cors: "true" …
Dunge
  • 532
  • 3
  • 19
0
votes
1 answer

how use secrets in .yaml file in ingress

I create my secret in my cluster using this command kubectl create secret tls server --key server.key --cert server.crt I am using ingress-nginx for my deployment file and I want to use above secrete in .yaml file. Anyone know how can I use…
0
votes
1 answer

Kubernets ingress-nginx timeout in 120s

I have one api, which will run about 4 minutes. I have deployed it on kubernetes with ingress-nginx. All api work normally except the long-run api, it always return 504 Gateaway as below: I have check in stackoverflow, and try some solution, none…
miemengniao
  • 592
  • 2
  • 11
0
votes
2 answers

How do I expose a UDP service externally on Google Kubernetes Engine (GKE) using the ingress-nginx controller?

I'm looking for some guidance on exposing UDP services on GKE using the ingress-nginx controller. After following the instructions on https://kubernetes.github.io/ingress-nginx/user-guide/exposing-tcp-udp-services/ I was able to access it when…
0
votes
1 answer

Ingress nginx: 413 Request Entity Too Large

I use ingress-nginx with Helm Chart. I used to have the problem, that when I would upload a file ZIP (400MB) that I would get the error 413 Request Entity Too Large nginx. So I changed the proxy-body-size value in my values.yaml file to…
0
votes
0 answers

Cannot access the application via node ip and node port

I have to deploy an application via Helm by supplying a VM Ip address and node port. Its a BareMetal Kubernetes cluster. The kubernetes cluster has ingress controller installed (as node port, this value is supplied in helm command). The problem is:…
user101
  • 1
  • 1
0
votes
0 answers

Ingress-Nginx: Subpath for host is not working without '/'

I have an instance of home-assistant being server from home..com. Using k8s-at-home helm chart I added a code-server sidecar to be served from home..com/codeserver. Both of these ingresses use ingress-nginx. The codeserver ingress redirects to home…
RickCoxDev
  • 165
  • 1
  • 9
0
votes
1 answer

ingress-nginx working but nginx-ingress not

I have Keyclock installed on my Kubernetes cluster. Default ingress which Keycloak creates looks like this. # Please edit the object below. Lines beginning with a '#' will be ignored, # and an empty file will abort the edit. If an error occurs while…
0
votes
0 answers

Does gRPC nginx ingress require TLS always to work?

Example given in nginx-ingress for GRPC does not work without TLS in .NET client https://kubernetes.github.io/ingress-nginx/examples/grpc/ Please help me to configure without TLS Created .NET console app as GRPC client and trying to connect…
kittur_riyaz
  • 116
  • 5
0
votes
2 answers

ingress-nginx wasn't installed properly?

Now I'm using WSL 2 and Docker Desktop on Windows 10. I created an YAML script to create an ingress for my microservices like below. apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: ingress-srv annotations: …
0
votes
0 answers

Set up react app to work with host domain in local development

I have a create-react-app with minor adjustments to configuration (adding a set of aliases with react-app-rewire -- see config-overrides.js). I have added environment variables to my .env file: (1) HOST=mavata.dev; (2)…
0
votes
0 answers

k8s: helm install ingress-nginx only create IngressClass?

I'm setting up two ingresses in different namespaces with ingress-nginx (https://github.com/kubernetes/ingress-nginx). My understanding is that I need to install ingress-nginx for each namespace, which creates the IngressClass I need. I've installed…
Colin Riddell
  • 407
  • 4
  • 17
0
votes
0 answers

How to map range of ports for NGINX Controller?

I'm following the documentation on exposing UDP/TCP services via NGINX Controller. All examples there show how to map a single port. Is there a way to map a range of ports, similar to docker-compose's yaml? e.g. ports: - "1000-2000:1000-2000" I…
Sagi Mann
  • 2,967
  • 6
  • 39
  • 72
0
votes
1 answer

ingress-nginx tls not working on AKS when deployed in separate namespace - Ingress is looking for the cert secret in the wrong namespace

I have an ingress-nginx controller installed though helm in a namespace called nginx My services run in the default namespace I have a SecretProviderClass in the nginx namespace, which is referenced from the nginx controller yaml in the nginx…
Josh
  • 1,648
  • 8
  • 27
  • 58