Skip to main content

Questions tagged [ingress-nginx]

The tag has no usage guidance.

0 votes
0 answers
9 views

How to match a wildcard producing a path match when an exact host is matched but not its path in Kubernetes ingress?

If I have an Ingress with apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: frontend spec: ingressClassName: nginx rules: - host: '*.example.com' http: paths: - ...
Kalle Richter's user avatar
0 votes
0 answers
7 views

How to create services mapped to separate Public IPs without Azure Kubernetes Service adding a Load Balancer rule for each service?

I have a AKS cluster with many applications, each application needs to be exposed to a unique public IP. I use an nginx ingress controller of type loadBalancer for each application and I'm able to get ...
Ehsan's user avatar
  • 1
-1 votes
1 answer
105 views

NGINX ingress not listening custom port

Guys I'm trying to make my service accessable by domain_name with port ex: mycompany.com:8443 Is this possible? or any alternative ways to do? But my ingress service not listening port and my service ...
Breaking News's user avatar
0 votes
1 answer
65 views

Using route and proxy with a NGINX virtualserver K8s config

I have a kinda weird set up where I have a general url(www.example.com) that terminates on an F5 that points to a nginx VS on an EKS cluster that has a localized domain(www.ue1.example.com). So the ...
flyerhawk's user avatar
0 votes
1 answer
404 views

How to deploy an nginx ingress to a kubeadm cluster

I'm attempting to set up my own bare-metal Kubernetes cluster composed of a control plane (VPS 149.62.186.95) and a worker node (VPS 149.62.189.139). Both my VPS are running Ubuntu 22.04 with 2 vCPUs ...
Lorenzo Rottigni's user avatar
0 votes
0 answers
31 views

How can I have working auto certificate renewal when using custom path in k8s ingress

In our k8s cluster we have multiple services, reachable from public internet, we're using nginx ingresses for routing + let's encrypt for certificate management. As we're using custom rewrite rule and ...
Pier's user avatar
  • 344
0 votes
1 answer
577 views

502 Bad Gateway when HTTPS listener is configured on Nexus Private Registry

Context: In order to pull custom images I made for AWX execution environment, I deployed a Sonatype Nexus Repository on my K8s cluster using this Helm Chart. I've simply modify it with my values: ...
motorbass's user avatar
  • 113
0 votes
1 answer
87 views

Kubernetes ingress fails to fetch letsencrypt

I using a root server at v2202111160479168516.hotsrv.de. I set up a microk8s install and enabled the plugins: cert-manager # (core) Cloud native certificate management dashboard ...
Coen Hacking's user avatar
1 vote
1 answer
884 views

redirect url/ to url/test using ingress

I'm running an application on kubernetes, when i use this url: https://myapp.test.com/ it redirects me to ressource not found (problem in the application). what i need now is to avoid this page by ...
safae's user avatar
  • 11
0 votes
1 answer
1k views

How can I tell my Helm Chart to ignore the default ingress-nginx and create a new one?

Whenever I run helm install on the chart I'm making I see this, Error: INSTALLATION FAILED: rendered manifests contain a resource that already exists. Unable to continue with install: IngressClass &...
Evan Carroll's user avatar
  • 2,251
0 votes
1 answer
248 views

K8S: How to manage incoming traffic for multiple instances of the same app with isolated namespaces and unique subdomains using an Ingress Controller?

I am new to K8S and need help deploying multiple instances of the same app. Each instance needs to be isolated in its own namespace and must have two exposed services (backend and frontend) accessible ...
Kardier's user avatar
0 votes
2 answers
715 views

Why is my AWS Application Load Balancer not exposing my Kubernetes service?

I am following a tutorial to set Kubernetes with an ingress managed service. The cluster is, 1 controller 2 worker Kubernetes cluster kubeadm built running Kubernetes v1.25.3 (latest at the time of ...
froxpotatoes's user avatar
0 votes
1 answer
2k views

How can I use rewrite-target on the root path with Azure Kubernetes Service?

I want to have an API service that I want to reach under /api, and other requests to fall back to a frontend service. Peculiar is that this worked locally with minikube, but now that I deployed on ...
Raphael Schmitz's user avatar
1 vote
2 answers
204 views

kubernetes nginx ingress confusion

I'm trying to get a feel for the Kubernetes Nginx ingress controller. Trying to deploy it to an AKS cluster, however I can't figure out the following. According to Create an ingress controller in ...
newby88's user avatar
  • 11
2 votes
0 answers
225 views

PreStop container hook on Pod termination

I have two containers in my Pod (one main app container and another one is just a simple nginx reverse proxy) containers: - name: my-app - name: my-nginx lifecycle: ...
Most Wanted's user avatar