From cb7eefef1b1a3b208f07ff5c2f06380e3fd42b7f Mon Sep 17 00:00:00 2001 From: RammusXu Date: Thu, 4 Feb 2021 14:32:13 +0800 Subject: [PATCH 1/2] Update GKE internal LB annotations --- charts/ingress-nginx/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/charts/ingress-nginx/README.md b/charts/ingress-nginx/README.md index e74794826..a809e7e5e 100644 --- a/charts/ingress-nginx/README.md +++ b/charts/ingress-nginx/README.md @@ -171,9 +171,10 @@ controller: internal: enabled: true annotations: + # ref: https://cloud.google.com/kubernetes-engine/docs/how-to/internal-load-balancing#create # Create internal LB - cloud.google.com/load-balancer-type: "Internal" - # Any other annotation can be declared here. + networking.gke.io/load-balancer-type: "Internal" + # Any other annotation can be declared here. ``` Example for Azure: From 003088a6b45161b0fc29393aadd96233c19ceeed Mon Sep 17 00:00:00 2001 From: RammusXu Date: Fri, 26 Feb 2021 11:20:37 +0800 Subject: [PATCH 2/2] More information for earlier than GKE 1.17 --- charts/ingress-nginx/README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/charts/ingress-nginx/README.md b/charts/ingress-nginx/README.md index a809e7e5e..0e0441771 100644 --- a/charts/ingress-nginx/README.md +++ b/charts/ingress-nginx/README.md @@ -171,9 +171,12 @@ controller: internal: enabled: true annotations: - # ref: https://cloud.google.com/kubernetes-engine/docs/how-to/internal-load-balancing#create - # Create internal LB + # Create internal LB. More informations: https://cloud.google.com/kubernetes-engine/docs/how-to/internal-load-balancing + # 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. ```