The pod fails to start with the following error message when deployed on a node which hostname contains only digits:
Error: invalid configuration: service::telemetry::resource: legacy resource attribute "host.name" must be string or null
A workaround for this error is setting the resource attributes host.name and k8s.node.name to null
resource:
k8s.node.name: 'null'
host.name: 'null'
unfortunately this is not a satisfying solution, as information is lost.
According to RFC1123 §2.1 hostnames with digits only are allowed.
The pod fails to start with the following error message when deployed on a node which hostname contains only digits:
Error: invalid configuration: service::telemetry::resource: legacy resource attribute "host.name" must be string or nullA workaround for this error is setting the resource attributes
host.nameandk8s.node.nametonullunfortunately this is not a satisfying solution, as information is lost.
According to RFC1123 §2.1 hostnames with digits only are allowed.