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.pull/24344/head
parent
d049bdbb80
commit
b805f7bdb1
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue