how to setup multiple node balancers for LKE clusters

I have a requirement to create node balancer per namespace. For some reason creating an ingress does not create a new node balancer for second namespace. It worked fine for the first namespace.

apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: abc
annotations:
kubernetes.io/ingress.class: nginx
cert-manager.io/cluster-issuer: "letsencrypt-prod"
spec:
tls:

  • hosts:
    • example.com
      secretName: example-tls
      rules:
  • host: example.com http: paths:
    • backend:
      serviceName: servicename
      servicePort: 80

Any suggestion's or ideas on how I can fix this issue

1 Reply

It worked for me i had multiple ingress for multiple subdomains. It seems single node balancer is sufficient for multiple subdomains.

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct