user3620514
user3620514

Reputation: 75

Kubernetes Internal Ingress

I use GKE and i'm looking a way to create an internal HTTP L7 ingress with private ip. The Application of the helm chart nginx provision a public L7 with public ip.

Upvotes: 0

Views: 122

Answers (1)

gonzalesraul
gonzalesraul

Reputation: 847

Annotate the nginx controller service so the LB provisioner, gives you an internal IP Address.

Try this on your nginx-ingress chart values.yaml:

controller:
  service:
    annotations:
      cloud.google.com/load-balancer-type: "Internal"

Reference:

Upvotes: 1

Related Questions