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 Kubernetes you can create a resource with a 253 characters long name :
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.
However labels and annotations values are restricted to 63 characters :
Valid label values must be 63 characters or less and must be empty or begin and end with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
In Agones we're setting labels value for referencing parent resources, but if a parent resource has a long name this cause errors.
In Kubernetes you can create a resource with a 253 characters long name :
However labels and annotations values are restricted to 63 characters :
In Agones we're setting labels value for referencing parent resources, but if a parent resource has a long name this cause errors.
References:
https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
https://kubernetes.io/docs/concepts/overview/working-with-objects/names/
/cc @victor-prodan
The text was updated successfully, but these errors were encountered: