Merge pull request #6836 from RammusXu/patch-1

Update GKE internal LB annotations
This commit is contained in:
Kubernetes Prow Robot 2021-04-29 07:38:51 -07:00 committed by GitHub
commit 0d873b620b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -171,8 +171,12 @@ controller:
internal: internal:
enabled: true enabled: true
annotations: annotations:
# Create internal LB # Create internal LB. More informations: https://cloud.google.com/kubernetes-engine/docs/how-to/internal-load-balancing
cloud.google.com/load-balancer-type: "Internal" # For GKE versions 1.17 and later
networking.gke.io/load-balancer-type: "Internal"
# For earlier versions
# cloud.google.com/load-balancer-type: "Internal"
# Any other annotation can be declared here. # Any other annotation can be declared here.
``` ```