Merge pull request #1669 from AhmedGrati/fix-ingress-host-generation

fix: remove lower case of the host generation
This commit is contained in:
Kubernetes Prow Robot 2023-07-16 10:47:07 -07:00 committed by GitHub
commit e121826f0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -708,7 +708,7 @@ func parseKomposeLabels(labels map[string]string, serviceConfig *kobject.Service
case LabelSecurityContextFsGroup:
serviceConfig.FsGroup = cast.ToInt64(value)
case LabelServiceExpose:
serviceConfig.ExposeService = strings.Trim(strings.ToLower(value), " ,")
serviceConfig.ExposeService = strings.Trim(value, " ,")
case LabelNodePortPort:
serviceConfig.NodePortPort = cast.ToInt32(value)
case LabelServiceExposeTLSSecret: