From 80cee97f0c7370ff9612a93adb45bad7e8ab582a Mon Sep 17 00:00:00 2001 From: Tomer Froumin Date: Thu, 21 Dec 2017 11:14:26 +0200 Subject: [PATCH] Fixed typos and made documentation more consistent --- .../providers/azure/azure_loadbalancer.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkg/cloudprovider/providers/azure/azure_loadbalancer.go b/pkg/cloudprovider/providers/azure/azure_loadbalancer.go index 6657a074d89..0ff061a495b 100644 --- a/pkg/cloudprovider/providers/azure/azure_loadbalancer.go +++ b/pkg/cloudprovider/providers/azure/azure_loadbalancer.go @@ -45,16 +45,17 @@ const ( // 1. Default mode - service has no annotation ("service.beta.kubernetes.io/azure-load-balancer-mode") // In this case the Loadbalancer of the primary Availability set is selected // 2. "__auto__" mode - service is annotated with __auto__ value, this when loadbalancer from any availability set - // is selected which has the miinimum rules associated with it. - // 3. "as1,as2" mode - this is when the laod balancer from the specified availability sets is selected that has the - // miinimum rules associated with it. + // is selected which has the minimum rules associated with it. + // 3. "as1,as2" mode - this is when the load balancer from the specified availability sets is selected that has the + // minimum rules associated with it. ServiceAnnotationLoadBalancerMode = "service.beta.kubernetes.io/azure-load-balancer-mode" - // ServiceAnnotationLoadBalancerAutoModeValue the annotation used on the service to specify the + // ServiceAnnotationLoadBalancerAutoModeValue is the annotation used on the service to specify the // Azure load balancer auto selection from the availability sets ServiceAnnotationLoadBalancerAutoModeValue = "__auto__" - // ServiceAnnotationDNSLabelName annotation speficying the DNS label name for the service. + // ServiceAnnotationDNSLabelName is the annotation used on the service + // to specify the DNS label name for the service. ServiceAnnotationDNSLabelName = "service.beta.kubernetes.io/azure-dns-label-name" // ServiceAnnotationSharedSecurityRule is the annotation used on the service