Configure cloud-specific helm values

Ingress Internal Service Annotations

By default, the Ingress internal service is disabled. If you enable it, you must annotate with using cloud-specific values.

Include one of these configurations in your custom_values.yaml file:

The internal ingress service must be annotated with Google’s load balancer information.

Include this configuration in the custom_values.yaml file:

ingress-nginx:
  controller:
    service:
      internal:
        enabled: true
        annotations:
          networking.gke.io/load-balancer-type: "Internal"
          cloud.google.com/load-balancer-type: "Internal"
yaml