From 54b80dc136ca822ec257f8c6e8b02a74c48e7bc7 Mon Sep 17 00:00:00 2001 From: Franco Morinigo Date: Mon, 8 Jun 2020 17:22:13 -0300 Subject: [PATCH] Add target nodes AWS ELB annotation documentation --- content/en/docs/concepts/services-networking/service.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/content/en/docs/concepts/services-networking/service.md b/content/en/docs/concepts/services-networking/service.md index dd92e88d3d..5a12c4e91d 100644 --- a/content/en/docs/concepts/services-networking/service.md +++ b/content/en/docs/concepts/services-networking/service.md @@ -863,6 +863,7 @@ There are other annotations to manage Classic Elastic Load Balancers that are de service.beta.kubernetes.io/aws-load-balancer-healthcheck-interval: "20" # The approximate interval, in seconds, between health checks of an # individual instance. Defaults to 10, must be between 5 and 300 + service.beta.kubernetes.io/aws-load-balancer-healthcheck-timeout: "5" # The amount of time, in seconds, during which no response means a failed # health check. This value must be less than the service.beta.kubernetes.io/aws-load-balancer-healthcheck-interval @@ -870,6 +871,10 @@ There are other annotations to manage Classic Elastic Load Balancers that are de service.beta.kubernetes.io/aws-load-balancer-extra-security-groups: "sg-53fae93f,sg-42efd82e" # A list of additional security groups to be added to the ELB + + service.beta.kubernetes.io/aws-load-balancer-target-node-labels: "ingress-gw,gw-name=public-api" + # A comma separated list of key-value pairs which are used + # to select the target nodes for the load balancer ``` #### Network Load Balancer support on AWS {#aws-nlb-support}