From 8e82db428b3318154a1a5b3eec64ed447d6e714a Mon Sep 17 00:00:00 2001 From: Doug MacEachern Date: Thu, 2 Aug 2018 08:17:07 -0700 Subject: [PATCH] Cloud Provider Zones doc fixups --- pkg/cloudprovider/cloud.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/cloudprovider/cloud.go b/pkg/cloudprovider/cloud.go index 0358890bcd..5ed7ed6052 100644 --- a/pkg/cloudprovider/cloud.go +++ b/pkg/cloudprovider/cloud.go @@ -198,13 +198,13 @@ type Zones interface { // can no longer be called from the kubelets. GetZone(ctx context.Context) (Zone, error) - // GetZoneByProviderID returns the Zone containing the current zone and locality region of the node specified by providerId - // This method is particularly used in the context of external cloud providers where node initialization must be down + // GetZoneByProviderID returns the Zone containing the current zone and locality region of the node specified by providerID + // This method is particularly used in the context of external cloud providers where node initialization must be done // outside the kubelets. GetZoneByProviderID(ctx context.Context, providerID string) (Zone, error) // GetZoneByNodeName returns the Zone containing the current zone and locality region of the node specified by node name - // This method is particularly used in the context of external cloud providers where node initialization must be down + // This method is particularly used in the context of external cloud providers where node initialization must be done // outside the kubelets. GetZoneByNodeName(ctx context.Context, nodeName types.NodeName) (Zone, error) }