Skip to content

Commit

Permalink
Merge pull request #976 from lmzuccarelli/BZ1964112
Browse files Browse the repository at this point in the history
Bug 1964112: Fix for host name validator error
  • Loading branch information
openshift-merge-robot authored Nov 8, 2021
2 parents cb9596d + 74b5628 commit be1be0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions route/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,10 +294,10 @@ const (
const (
// AllowNonDNSCompliantHostAnnotation indicates that the host name in a route
// configuration is not required to follow strict DNS compliance.
// Unless the annotation is set to true, the route host name must have
// at least two labels, with each label no more than 63 characters from the set of
// Unless the annotation is set to true, the route host name must have at least one label.
// Labels must have no more than 63 characters from the set of
// alphanumeric characters, '-' or '.', and must start and end with an alphanumeric
// character. A trailing dot is allowed. The total host name length must be no more
// character. A trailing dot is not allowed. The total host name length must be no more
// than 253 characters.
//
// When the annotation is set to true, the host name must pass a smaller set of
Expand Down

0 comments on commit be1be0e

Please sign in to comment.