Questions tagged [ingress-controller]
173 questions
1
vote
0 answers
Does ALB ingress controller monitor ALB configuration and reconcile with the desired ingress state stored in etcd?
I know controllers like replicaset will reconcile the current running number of replicas with the desired number, for example, if the desire replica is 3, for some reason, 1 replica is down, the controller learns this information and tries to bring…

xczzhh
- 658
- 1
- 8
- 22
1
vote
1 answer
Kubernetes can i have multiple ingress in different nodes?
I have 1 Master node and then worker nodes separated across regions. worker nodes has labels etc attached so that i can decide which service to run on which nodes. Now i want to expose services via domain name but ia m confused with nginx ingress…

Motaro
- 13
- 3
1
vote
1 answer
AKS with AGIC and Application Gateway
I have an AKS cluster with the add-on AGIC enabled (will try and convert it into Helm based AGIC in the near future). At the moment I have an application on this cluster with the Ingress set to the Application Gateway. This works perfectly on port…

JakeUT
- 359
- 1
- 4
- 16
1
vote
1 answer
Unable to create ingress route to KubeSphere
I have installed nginx ingress controller. As I understand that one of the main reasons to use ingress is to save money by not creating multiple load balancers.
My kubesphere-console service yaml manifest looks like below:
cat…
1
vote
2 answers
How to configure nginx ingress to use single ingress load balancer for multiple hosts and multiple namespaces
I'm planning to deploy more than 30 apps in 5 namespaces. I will be using existing AWS EKS 1.21 Cluster. All the apps will be requiring external access because it's being used by clients. I don't want to use multiple load balancers to ease the…

Oguzhan Aygun
- 1,314
- 1
- 10
- 24
1
vote
0 answers
Block URL access when specific word exists
I'm looking to configure annotations in ingress to block certain words
For example if I access the endpoint(same as host in ingress) using https://my-endpoint?blocked-word , URL should either be re-written to https://my-endpoint or user should get…

user89978
- 97
- 1
- 7
1
vote
0 answers
Websocket Error: Invalid HTTP upgrade", code: 404
We have deployed an ALB for our spingboot application which consists of both Rest and Websocket services hosted in EKS cluster. We have added health check, ssl redirect etc. annotations in the ingress.yaml file. The listener is HTTPS: 443 and the…

Rampn
- 11
- 1
1
vote
1 answer
How can I define the `limit_req_zone`?
I am working with nginx-ingress-controller (this is not the same that ingress-nginx )
I have this ingress file
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: my-ingress
annotations:
cert-manager.io/cluster-issuer:…

JuanPablo
- 23,792
- 39
- 118
- 164
1
vote
1 answer
Kubernetes networking confusion on google cloud
I'm fairly new to Kubernetes and I have played around with it for a few days now to get a feeling for it. Trying out to set up an Nginx Ingress controller on the google-cloud platform following this guide, I was able to set everything up as written…

rammelmueller
- 1,092
- 1
- 14
- 29
1
vote
0 answers
Setup custom default backend for nginx ingress controller in Kubernetes
I am stuck with custom default backend for error page from Nginx Ingress Controller. By default, Nginx Ingress Controller pods return Nginx's default page with errors such as 404, 50x and I want to modify them.
I have installed a DaemonSet of Nginx…

Viettel Solutions
- 1,519
- 11
- 22
1
vote
1 answer
Enable App Gateway ingress for Azure Kubernetes on 443 (https)
I am new to AKS and trying to set up the cluster and expose it via an app gateway ingress controller. While I was able to set up the cluster using az commands and was able to deploy and hit it using HTTP. I am having some challenges in enabling…

nirag tibdewal
- 81
- 1
- 5
1
vote
2 answers
nginx-ingress stopped working, despite Ready service + pod ("does not have any active Endpoint.")
I have transferred my microk8s setup to a new server and found that the once-working ingress setup my trial setup stopped working.
I am running this minimal whoami-app:
apiVersion: apps/v1
kind: Deployment
metadata:
name: whoami
namespace:…

petwri
- 553
- 1
- 4
- 11
1
vote
0 answers
Adding Mutual TLS to Emissary-Ingress
I keep getting this error when I try to access a service running in my microk8s cluster with this curl command:
curl -lkv --cert cert.pem --key key.pem https://$LB_ENDPOINT/backend/
I am running this on Microk8s on Ubuntu 20.04. Helm3, Metallb, and…

Joseph Eshiett
- 11
- 2
1
vote
1 answer
Dynamically update whitelist-source-range without causing downtime?
I have an application running on Kubernetes, that uses nginx as the ingress controller that created a load balancer in AWS. I noticed that by default the application is open to the World, with 0.0.0.0/32 is added to the inbound rules of the AWS…

M S Puranik
- 35
- 7
1
vote
1 answer
Mainflux on Kubernetes with ingress-nginx
We have followed this tutorial to get mainflux up and running. After installing kubectl we added helm repos as follows
helm repo add stable https://charts.helm.sh/stable
helm repo add bitnami https://charts.bitnami.com/bitnami
We have installed…

Sami Hassan
- 105
- 12