Questions tagged [ingress-controller]
173 questions
0
votes
1 answer
How to configure ingress controller with multiple paths for the same service?
I have a separate ingress-internal (manifests) for the backend and the frontend.
My backend service has several endpoints: one with GraphqQL and two Rest.
After deploying the project, I find that when I request the Rest endpoint (POST request); I…

Bilel-NEJI
- 61
- 9
0
votes
1 answer
What is better helm repo to install nginx ingress?
As far as I understand there are two or more helm repos with nginx-ingress.
nginx-stable > https://helm.nginx.com/stable
ingress-nginx > https://kubernetes.github.io/ingress-nginx
Firstly I have installed from nginx-stable, but this installation by…

kaetana
- 3
- 2
0
votes
0 answers
Kubernetes nginx Ingress redirect 302
I have an nginx ingress controller and ingress resource for hazlecast running with path /hazlecast-mancenter mapped to hazlecast-mancenter in the backend. When I try to hit "http://hostname/hazlecast-mancenter" the page doesn't come up . When i…

Shane Warne
- 1,350
- 11
- 24
0
votes
1 answer
How to map a volume inside the ingress (nginx) pod in Minikube
I am using Lua code inside the Nginx ingress controller in Minikube to write some logs to a file. I would like this file to be available on the host.
Is there a way to map a volume from the ingress-controller pod to the host? I did not create the…

Manish Ballav
- 45
- 4
0
votes
0 answers
tekton-pipeline ingress route conflicts with kubesphere-console
I have two ingress routes created as below,
kubesphere-console
tekton-pipelines
My manifest files are as like below.
**cat ingress-tekton-dashboard.yaml **
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: tekton-dashboard
…
0
votes
1 answer
Traefik ingress route is not accessible
I have setup the default traefik dashboard example although this is not being exposed. Using kubectl port-forward works. The only thing that comes to mind is that I am using flannel as CNI and my previous k8s cluster instance I was using calico. It…

ageladas
- 144
- 1
- 10
0
votes
1 answer
Route nginx to services in different namespaces
We have a Kubernetes cluster with an nginx controller.
We are using this nginx controller to route different paths to different services. Though,
when a service is on a different namespace, I cannot figure out how to redirect to it.
This is the…

purple_lolakos
- 456
- 5
- 15
0
votes
3 answers
Need to help on routing https URL with redirectpath
I am running Nginx ingress inside one of our EKS cluster and earlier had issue to http-->https redirect as we are terminating SSL at AWS NLB. I was able to get it fixed using the method listed in this ticket…

VMPowercli
- 1
- 1
0
votes
1 answer
K8s: How do i exposing my app though ingress
I'm trying to expose my application in K8s.
I have set up an Ingress Controller which gives the following properties:
kubectl get svc,pods --namespace ingress
NAME TYPE CLUSTER-IP EXTERNAL-IP …

WhatTheWhat
- 197
- 3
- 13
0
votes
1 answer
How the Openshift Ingress Object picked up by particular router
lets say we have IngressControllerA , IngressControllerB and created Ingress Object IngressA, IngressB, how to tell IngressA object router to be pickedup by IngressControllerA and IngressB object router to be pickedup by IngressControllerB.
Any…

anilkumar panditi
- 11
- 1
- 8
0
votes
1 answer
Kubernetes Ingress failing to get address
I am trying to set up an ingress for services using nginx ingress on AWS EKS.
I have installed nginx ingress with the code provided on Kubernetes' github page.
apiVersion: v1
kind: Namespace
metadata:
labels:
app.kubernetes.io/instance:…

Adam
- 1
0
votes
1 answer
EKS 1.22 update - ingress and alb not working
After updating EKS cluster to 1.22 all websites are down. Pods are ok but all the networking is not working.
I don't know how to fix ingresses and load balancer.
I have tried updating deprecated API versions for ingress-kong and…

Flavius
- 21
- 1
- 4
0
votes
0 answers
Using nginx-ingress http works but https is not on selfhost kubernetes
i use the nginx-ingress in my kubernetes cluster
i installed the nginx-ingress-controller successful.
here is my ingress:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: demo-ingress
spec:
ingressClassName: nginx
rules:
-…

Von.fly
- 1
- 3
0
votes
0 answers
glooedge tls not working for more than one virtual service
I am using Gloo edge as my ingress controller
I have two virtual services say one for domain a.example.com and another for b.example.com.
When I add sslConfig for one it works completely fine. But when I add it for both I am not able to access my…

Origin
- 1,182
- 1
- 10
- 25
0
votes
1 answer
Access Prometheus and Grafana via Ingress in AKS
I have an AKS Cluster deployed and I have deployed Prometheus and Grafana in monitoring namespace. I have also created a Ingress rule to access both the application in default namespace.
To access both the services I have created services in default…

Ankit Soni
- 95
- 2
- 13