From b805f7bdb1b0fb0f280d7860f49564ffa5caf7dd Mon Sep 17 00:00:00 2001 From: Brian Nutt Date: Thu, 1 Oct 2020 16:52:00 -0700 Subject: [PATCH] Add missing annotation in en/docs/concepts/services-networking/service.md Annotation `service.beta.kubernetes.io/aws-load-balancer-security-groups` is missing from the list of annotations that can be applied to an ELB. This annotation was introduced in https://github.com/kubernetes/kubernetes/pull/62774 and refactored https://github.com/kubernetes/kubernetes/pull/83446 to allow users to specify a set of existing security groups to attach to the ELB instead of using any precreated security groups. --- content/en/docs/concepts/services-networking/service.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/en/docs/concepts/services-networking/service.md b/content/en/docs/concepts/services-networking/service.md index ded1451d80..83b7850364 100644 --- a/content/en/docs/concepts/services-networking/service.md +++ b/content/en/docs/concepts/services-networking/service.md @@ -881,6 +881,10 @@ There are other annotations to manage Classic Elastic Load Balancers that are de # health check. This value must be less than the service.beta.kubernetes.io/aws-load-balancer-healthcheck-interval # value. Defaults to 5, must be between 2 and 60 + service.beta.kubernetes.io/aws-load-balancer-security-groups: "sg-53fae93f" + # A list of existing security groups to be added to ELB created. Unlike the annotation + # service.beta.kubernetes.io/aws-load-balancer-extra-security-groups, this replaces all other security groups previously assigned to the ELB. + 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