@@ -217,7 +217,7 @@ pub fn is_domain(value: &str) -> Result {
217
217
}
218
218
219
219
/// Tests for a string that conforms to the kubernetes-specific definition of a label in DNS (RFC 1123)
220
- /// used in Namespace names, see: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#dns-label-names
220
+ /// used in Namespace names, see: [Kubernetes Docs]( https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#dns-label-names)
221
221
/// Maximum label length supported by k8s is 63 characters (minimum required).
222
222
pub fn is_lowercase_rfc_1123_label ( value : & str ) -> Result {
223
223
validate_all ( [
@@ -232,7 +232,7 @@ pub fn is_lowercase_rfc_1123_label(value: &str) -> Result {
232
232
}
233
233
234
234
/// Tests for a string that conforms to the kubernetes-specific definition of a subdomain in DNS (RFC 1123)
235
- /// used in ConfigMap names, see https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#dns-subdomain-names
235
+ /// used in ConfigMap names, see [Kubernetes Docs]( https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#dns-subdomain-names)
236
236
pub fn is_lowercase_rfc_1123_subdomain ( value : & str ) -> Result {
237
237
validate_all ( [
238
238
validate_str_length ( value, RFC_1123_SUBDOMAIN_MAX_LENGTH ) ,
@@ -246,7 +246,7 @@ pub fn is_lowercase_rfc_1123_subdomain(value: &str) -> Result {
246
246
}
247
247
248
248
/// Tests for a string that conforms to the kubernetes-specific definition of a label in DNS (RFC 1035)
249
- /// used in Service names, see: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#rfc-1035-label-names
249
+ /// used in Service names, see: [Kubernetes Docs]( https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#rfc-1035-label-names)
250
250
pub fn is_lowercase_rfc_1035_label ( value : & str ) -> Result {
251
251
validate_all ( [
252
252
validate_str_length ( value, RFC_1035_LABEL_MAX_LENGTH ) ,
0 commit comments