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
By convention, the names of Kubernetes resources should be up to maximum length of 253 characters and consist of lower case alphanumeric characters, -, and ., but certain resources have more specific restrictions.
Not all names follow this convention, e.g. name: system:serviceaccount:kube-system:dns-controller
We can't use our typical strategy of combining fields with : unless we escape the colons in these names.
The ClusterRoleBinding implementation will include this new behavior, but we need to retrofit other types with the new escaping Name type.
The text was updated successfully, but these errors were encountered:
By convention, the names of Kubernetes resources should be up to maximum length of 253 characters and consist of lower case alphanumeric characters, -, and ., but certain resources have more specific restrictions.
https://kubernetes.io/docs/concepts/overview/working-with-objects/names/
Not all names follow this convention, e.g.
name: system:serviceaccount:kube-system:dns-controller
We can't use our typical strategy of combining fields with
:
unless we escape the colons in these names.The
ClusterRoleBinding
implementation will include this new behavior, but we need to retrofit other types with the new escapingName
type.The text was updated successfully, but these errors were encountered: