skip to Main Content

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

Kustomize how to replace only the host in Ingress configuration – Nginx

I've got this ingress.yaml base configuration: apiVersion: extensions/v1beta1 kind: Ingress metadata: labels: sia: aza app: asap-ingress-internal name: asap-ingress-internal annotations: kubernetes.io/ingress.class: "nginx-external" nginx.ingress.kubernetes.io/use-regex: "true" spec: rules: - host: the-host-value http: paths: - path: /asap-srv-template/(.*) backend: serviceName: asap-srv-template servicePort: 8080 And want…

VIEW QUESTION
Back To Top
Search