Fix typo: loadbalander -> loadbalancer (#1442)

This commit is contained in:
Kevin Wang 2021-10-12 23:29:35 -04:00 committed by GitHub
parent 72ea6a3c24
commit 8340b086d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1231,7 +1231,7 @@ func (k *Kubernetes) configKubeServiceAndIngressForService(service kobject.Servi
*objects = append(*objects, svc)
}
if len(svcs) > 1 {
log.Warningf("Create multiple service to avoid using mixed protocol in the same service when it's loadbalander type")
log.Warningf("Create multiple service to avoid using mixed protocol in the same service when it's loadbalancer type")
}
} else {
svc := k.CreateService(name, service)

View File

@ -390,7 +390,7 @@ func (o *OpenShift) Transform(komposeObject kobject.KomposeObject, opt kobject.C
objects = append(objects, svc)
}
if len(svcs) > 1 {
log.Warningf("Create multiple service to avoid using mixed protocol in the same service when it's loadbalander type")
log.Warningf("Create multiple service to avoid using mixed protocol in the same service when it's loadbalancer type")
}
} else {
svc := o.CreateService(name, service)