Questions tagged [ingress-controller]

173 questions
1
vote
0 answers

Kubernetes Ingress and Services in different namespaces

I am working on a kubernetes application. My cluster is running in an EKS cluster, and I have two services running in two separate namespaces. I want a single Application Load Balancer to use these two services, using ALB ingress controller. I am…
1
vote
1 answer

AWS EKS Group NLB as ALB but with different ports

To define a VPC Link into API Gateway we have to declare an NLB in eks (LoadBalancer service) to access the pod in the VPC. When we define ingress resource, we can group them into one ALB with the annotation alb.ingress.kubernetes.io/group.name It…
1
vote
1 answer

How to enable an older version of NGINX ingress for minikube

I'm pretty sure I'm having issues related to the new 1.0.0 beta version of NGINX ingress controller. I'd like to downgrade to 0.49.0 (or something in the 0. series). How can I downgrade the NGINX ingress controller version with minikube?
kingledion
  • 2,263
  • 3
  • 25
  • 39
1
vote
1 answer

Nginx 400, A plain http response was sent to HTTPS port with nginx-ingress controller

I have deployed an nginx-ingress controller in an aws eks cluster using an helm chart from artifact hub (https://artifacthub.io/packages/helm/ingress-nginx/ingress-nginx) . I have edited the annotation to use NLB in aws, after the deployment if…
1
vote
1 answer

How to Redirect traffic into 403 error not wide-listed traffic on kubernetes cluster

we have an application that allows only paid IP I have to redirect not paid IP into 403 pages. For each ingress, I have to provide a list of IP ranges. Have to find the way to redirect if a user is not whitelisted to the provided URL with 403 error.…
kenjebek
  • 11
  • 3
0
votes
0 answers

Kong reports "connection refused" during communication between two services within Kubernetes Cluster. Works fine if requested from outside cluster

We are trying to use Kong Ingress as an internal API GW to communicate between pods/services inside the same cluster. But the connection fails when one pod tries to communicate with the other with “connection refused”. It is successful when the…
0
votes
1 answer

EKS ingress-nginx contoller attaching sg to public nlb

I've got EKS cluster with managed node group. I'm deploying ingress controller using helm chart ingress-nginx version 4.7.1 from repository https://kubernetes.github.io/ingress-nginx. It creates public nlb. Trying to secure it I came across this…
0
votes
1 answer

Ingress Nginx - set static IP address in GKE

I use ingress nginx (https://kubernetes.github.io/ingress-nginx/) This is how i build my project in GKE. Step 1: Install ingress controller (https://kubernetes.github.io/ingress-nginx/deploy/#gce-gke) kubectl apply -f…
0
votes
0 answers

K8s ingress-nginx redirecting to 443 intermittently

I have a k8s cluster created via terraform on openstack, while creating cluster we have created ingress controller resource using below code: resource "null_resource" "create_ingress_controller" { provisioner "remote-exec" { connection { …
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

Is there a way to exclude an ingress from using my nginx custom default backend?

I created a custom default backend for my ingress controller by following these official instructions: custom default backend manifests and it is being referenced in the values.yaml of my nginx ingress controller. This all works perfectly fine. But…
0
votes
1 answer

How can I redirect to a different URL based on the source IPs in NGINX Ingress Controller

I have a set of IPs (Example: 1.1.1.1/24) and the requests coming from those source IPs (1.1.1.1/24) must redirect to a different URL. I tried the below method. apiVersion: extensions/v1beta1 kind: Ingress metadata: name: ingress-test …
0
votes
0 answers

Kubenete ingress controller doesn't let ssl passthrough when client request from different network

I've met a strange issue that it seems kubenete ingress controller doesn't let ssl passthrough when the client request from different network. We have a kubenete server deployed on LAN, and configured the args --enable-ssl-passthrough in the ingress…
X.J
  • 473
  • 1
  • 5
  • 9
0
votes
0 answers

Is there a way to redirect a request from API server to a different service in Kubernetes

I have read about ingress/ingress controller etc. But what I really want is to redirect request to API server to a new service. Some sort of webhook implementation. Say I have to request a resource creation, can that go through some custom…
ambikanair
  • 4,004
  • 11
  • 43
  • 83
0
votes
1 answer

How can I know request waiting time in Nginx Ingress Controller?

We use Kubernetes with Nginx Ingress Controller to run our platform with various backend services. We also use New Relic (& Prometheus, Grafana) for our Observability dashboards & alerts. Nginx Ingress Controller is the entrypoint for all our…