Add 'content/posts/kubernetes-label-length.md'

This commit is contained in:
Marcus Noble 2021-04-20 14:16:00 +00:00
parent 208bb2dccb
commit b4ff1b21a4
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
---
title: "Kubernetes label length"
date: 2021-04-20T15:10:37+01:00
draft: false
tags:
- kubernetes
images:
- /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](https://kubernetes.io/docs/reference/labels-annotations-taints/#kubernetesiohostname) or by setting the value of the label yourself with the `--node-labels` flag.