Skip to content

Commit 7f7db14

Browse files
authored
shorten subdomain name in stackset hostnames to conform to max length constraint (#690)
1 parent bb69d60 commit 7f7db14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/e2e/test_environment.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ func requiredEnvar(envar string) string {
120120
func hostnames(stacksetName string) []string {
121121
names := make([]string, 0, len(clusterDomains))
122122
for _, domain := range clusterDomains {
123-
names = append(names, fmt.Sprintf("%s-%s.%s", namespace, stacksetName, domain))
123+
names = append(names, fmt.Sprintf("%s.%s.%s", namespace, stacksetName, domain))
124124
}
125125
return names
126126
}

0 commit comments

Comments
 (0)