til/content/posts/kubernetes-label-length.md

849 B

title date draft tags images
Kubernetes label length 2021-04-20T15:10:37+01:00 false
kubernetes
/images/kubernetes-label-length.gif

It turns out that labels values in Kubernetes have a limit of 63 characters!

I discovered this today when none of my nodes seemed to be connecting to the control plane. Eventually discovered the hostname of the node was longer than 63 characters (mainly due to multiple subdomain levels) and so the kubernetes.io/hostname label being automtically added to the node was causing Kubernetes to reject it.

If you hit this like me, the hostname used for the label can be overridden using the --hostname-override flag on kubelet or by setting the value of the label yourself with the --node-labels flag.