skip to Main Content

How to create only internal load balancer with ingress-nginx chart?

In my AWS EKS, I have installed nginx-ingress with following command: helm upgrade --install -f controller.yaml --namespace nginx-ingress --create-namespace --version 3.26.0 nginx-ingress ingress-nginx/ingress-nginx Where controller.yaml file looks like this: controller: ingressClass: nginx-internal service: internal: enabled: true annotations: service.beta.kubernetes.io/aws-load-balancer-internal: 0.0.0.0/0 I…

VIEW QUESTION

Deploying Ingress Nginx Controller ELB in EKS Cluster with multiple nodes

I'm currently trying to deploy NGINX Ingress Controller on my AWS eks Cluster. I have 4 nodes running: NAME STATUS ROLES AGE VERSION ip-10-230-35-48.ec2.internal Ready <none> 7h44m v1.19.6-eks-49a6c0 ip-10-230-39-9.ec2.internal Ready <none> 7h42m v1.19.6-eks-49a6c0 ip-10-230-42-241.ec2.internal Ready <none> 7h49m v1.19.6-eks-49a6c0 ip-10-230-49-228.ec2.internal Ready…

VIEW QUESTION
Back To Top
Search