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
In cases when objects represent a physical entity, like a Node representing a physical host, when the host is re-created under the same name without deleting and re-creating the Node, Kubernetes treats the new host as the old one, which may lead to inconsistencies.
29
29
{{< /note >}}
30
30
31
-
Below are three types of commonly used name constraints for resources.
31
+
Below are four types of commonly used name constraints for resources.
32
32
33
33
### DNS Subdomain Names
34
34
@@ -41,7 +41,7 @@ This means the name must:
41
41
- start with an alphanumeric character
42
42
- end with an alphanumeric character
43
43
44
-
### DNS Label Names
44
+
### RFC 1123 Label Names {#dns-label-names}
45
45
46
46
Some resource types require their names to follow the DNS
47
47
label standard as defined in [RFC 1123](https://tools.ietf.org/html/rfc1123).
@@ -52,6 +52,17 @@ This means the name must:
52
52
- start with an alphanumeric character
53
53
- end with an alphanumeric character
54
54
55
+
### RFC 1035 Label Names
56
+
57
+
Some resource types require their names to follow the DNS
58
+
label standard as defined in [RFC 1035](https://tools.ietf.org/html/rfc1035).
59
+
This means the name must:
60
+
61
+
- contain at most 63 characters
62
+
- contain only lowercase alphanumeric characters or '-'
63
+
- start with an alphabetic character
64
+
- end with an alphanumeric character
65
+
55
66
### Path Segment Names
56
67
57
68
Some resource types require their names to be able to be safely encoded as a
0 commit comments