You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tracing::warn!(%cluster_domain,"Your configured Kubernetes cluster domain is not fully qualified (it does not end with a dot (\".\")). We recommend adding a trailing dot to reduce DNS requests, see https://github.com/stackabletech/issues/issues/656 for details");
constRFC_1123_LABEL_ERROR_MSG:&str = "a lowercase RFC 1123 label must consist of lower case alphanumeric characters, '-' or '.', and must start and end with an alphanumeric character";
24
+
25
+
/// This is a subdomain's max length in DNS (RFC 1123)
constRFC_1123_SUBDOMAIN_ERROR_MSG:&str = "a lowercase RFC 1123 subdomain must consist of lower case alphanumeric characters, '-' or '.', and must start and end with an alphanumeric character";
24
-
constRFC_1123_LABEL_ERROR_MSG:&str = "a lowercase RFC 1123 label must consist of lower case alphanumeric characters, '-' or '.', and must start and end with an alphanumeric character";
25
30
26
-
// This is a subdomain's max length in DNS (RFC 1123)
27
-
constRFC_1123_SUBDOMAIN_MAX_LENGTH:usize = 253;
28
-
// Minimal length required by RFC 1123 is 63. Up to 255 allowed, unsupported by k8s.
constDOMAIN_ERROR_MSG:&str = "a domain must consist of lower case alphanumeric characters, '-' or '.', and must start with an alphanumeric character and end with an alphanumeric character or '.'";
constRFC_1035_LABEL_ERROR_MSG:&str = "a DNS-1035 label must consist of lower case alphanumeric characters or '-', start with an alphabetic character, and end with an alphanumeric character";
0 commit comments