fix: Update tags validation message & documentation (#3145)

* Update dns label validation message to match regex pattern

* Update documentation for tags validation & examples

* Add changeset
This commit is contained in:
Vividh Chandna
2020-10-29 21:28:18 +05:30
committed by GitHub
parent 323c709338
commit fa56f46158
3 changed files with 9 additions and 4 deletions
@@ -74,7 +74,7 @@ export class FieldFormatEntityPolicy implements EntityPolicy {
case 'isValidNamespace':
case 'isValidDnsLabel':
expectation =
'a string that is sequences of [a-zA-Z0-9] separated by [-], at most 63 characters in total';
'a string that is sequences of [a-z0-9] separated by [-], at most 63 characters in total';
break;
case 'isValidAnnotationValue':
expectation = 'a string';