Merge pull request #4771 from jonyhy96/patch-2

fix a grammar mistake
This commit is contained in:
k8s-ci-robot 2018-03-24 12:42:01 -07:00 committed by GitHub
commit eab3d76c94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ func (k *KubeBoot) CreateInternalDNSNameRecord(fqdn string) error {
return k.DNS.Replace(fqdn, values)
}
// BuildInternalDNSName builds a DNS name for use inside the cluster, adding our internal DNS suffix to the key,
// BuildInternalDNSName builds a DNS name for use inside the cluster, adding our internal DNS suffix to the key
func (k *KubeBoot) BuildInternalDNSName(key string) string {
fqdn := key + k.InternalDNSSuffix
return fqdn