We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dbfa95 commit 3a6126dCopy full SHA for 3a6126d
pkg/utils/names_test.go
@@ -227,9 +227,9 @@ func TestValidateNamespace(t *testing.T) {
227
{"a", true},
228
{"a-b", true},
229
{"abc-123-xyz", true},
230
- {"123app", true}, // DNS-1123 allows starting with number
231
- {"123invalid", true}, // DNS-1123 allows starting with number
232
- {"1", true}, // single number is valid
+ {"123app", true}, // DNS-1123 allows starting with number
+ {"123invalid", true}, // DNS-1123 allows starting with number
+ {"1", true}, // single number is valid
233
234
// Invalid namespaces
235
{"My-App", false}, // uppercase not allowed
0 commit comments