Questions tagged [kubernetes-ingress]

Ingress gives you a way to route requests to services based on the request host or path, centralizing a number of services into a single entrypoint.

Services and Pods have IPs only routable by the cluster network. All traffic that ends up at an edge router is either dropped or forwarded elsewhere. An Ingress is a collection of rules that allow inbound connections to reach the cluster services.

3847 questions
1
vote
0 answers

Kubernetes cert-manager with letsencrypt, challenge pending?

This is the status of my certificate: Status: Conditions: Last Transition Time: 2021-04-07T21:43:09Z Message: Issuing certificate as Secret does not exist Reason: DoesNotExist Status:…
OlavT
  • 2,496
  • 4
  • 31
  • 56
1
vote
1 answer

Why ingress-nginx-controller pod always establishes IPv4 TCP connection to endpoint?

We have brought up k8s cluster on 2 VMs with dualstack feature enabled. Lets call them nodeA , nodeB. nodeA is master node, nodeB is worker node. Following output gives info about cluster configuration # ps -eaf | grep kubeapi root 2593936…
1
vote
2 answers

Replace haproxy by ingress in AKS

I'am new in Azure Kubernetes. I'm implementing a AKS and I want to use ingress in order to be redirected to app-front POD when i tape https://front.domain.com and be redirect to grafana POD when i tape https://grafana.domain.com in the brosser. I…
Quentin Merlin
  • 664
  • 1
  • 6
  • 31
1
vote
1 answer

Redirection problem for Angular app on Kubernetes with ingress

I have the ingress setup for Kubernetes as the following apiVersion: networking.k8s.io/v1beta1 kind: Ingress metadata: name: dev-ingress #namespace: dev annotations: nginx.ingress.kubernetes.io/rewrite-target: /$2 …
1
vote
1 answer

AWS EKS - Load Balancer (Ingress)

I am deploying kubernetes nginx-ingress on AWS. Is there any way to prevent auto creation of network loadbalancer and me assigning an already existing load balancer in the config? If not, is there any way to provide custom name to AWS NLB from…
1
vote
1 answer

kubernetes : How to deploy two react-js applications in the same domain, where the first is in the root and other is in a specific path

Since 3 days, I have a problem with a deployment in kubernetes. I would like to deploy two react-js application : the first in http://app.my-domain.com and the other in http://app.my-domain.com/shop NB: the two url is fake, it's just for…
1
vote
3 answers

Kubernetes nginx ingress working inside cluster but not visible outside

I set up a trivial kubernetes yaml file (below) to test the nginx ingress. Nginx works as expected inside the cluster but isn't visible outside the cluster. I'm running minikube with minikube tunnel and minikube addons enable ingress. When I kubectl…
Don Alvarez
  • 2,017
  • 2
  • 12
  • 12
1
vote
1 answer

Istio ingress-gateway for gRPC (connection closed)

I have a gRPC server running on k8s cluster (remote server). I try to connect to this service from gRPC client (local pc). To do so, I use Istio ingress gateway. But I get "connection closed" msg with 14 error code. Here is my gRPC client: conn, err…
Klimbo
  • 1,308
  • 3
  • 15
  • 34
1
vote
0 answers

Deploy service at subpath without redirect in Kubernetes

I want to have one base url with different services deployed at different subpath in my Kubernetes cluster like this: https://base.url/service-a # -> service-a https://base.url/service-b # -> service-b # ... But I don't want the service to know…
jns_ai_unr
  • 753
  • 1
  • 8
  • 19
1
vote
1 answer

Kubernetes helm chart one namespace contains multiple ingress files

I have a use case that I need to expose /swagger-ui.html without authentication and /apis/* with authentication I created 2 ingress files in helm chart apiVersion: extensions/v1beta1 kind: Ingress metadata: annotations: …
John
  • 791
  • 2
  • 7
  • 25
1
vote
0 answers

kubernetes load balancing with ingress controller

I'm trying to start looking into K8s and in doing so I've managed to confuse myself. It seems like a fairly common architecture to have the following, when using a kubernetes provider such as AWS or DO: Cloud External Load Balancer -> [CLUSTER…
1
vote
1 answer

Kubernetes Ingress With Dynamic routing?

I have a Jenkins build process that deploys our code to several Kubernetes environments. Currently, it works fantastic with known/core branches (develop, release, master) and such, BUT we would like to make all of our feature branches and bug fix…
zentechinc
  • 369
  • 1
  • 5
  • 15
1
vote
2 answers

Do not terminate SSL at ingress level for Kubernetes

I have a Java application running inside tomcat server (which is inside a pod), which is configured to work with https. I am using nginx ingress. The problem is, the nginx ingress is terminating the SSL and forwarding only plain http to the tomcat…
Junaed
  • 1,457
  • 13
  • 15
1
vote
1 answer

Ingress route pointing to the wrong service

I've setup k3s v1.20.4+k3s1 with Klipper Lb and nginx ingress 3.24.0 from the helm charts. I'm following this article but I'm stumbling upon a very weird issue where my ingress hosts would point to the wrong service. Here is my…
E-Kami
  • 2,529
  • 5
  • 30
  • 50
1
vote
1 answer

HELM admission is constantly creating Pod in status "Container Creating"

I am using K8S version 19. I tried to install second nginx-ingress controller on my server (I have already one for Linux so I tried to install for Windows as well) helm install nginx-ingress-win ingress-nginx/ingress-nginx -f internal-ingress.yaml…
vel
  • 1,000
  • 1
  • 13
  • 35