Constant K8S_POD_LABEL
pub const K8S_POD_LABEL: &'static str;
Expand description
The label placed on the Pod, the key
being the label name, the value being the label value.
§Notes
Examples:
- A label
app
with valuemy-app
SHOULD be recorded as thek8s.pod.label.app
attribute with value"my-app"
. - A label
mycompany.io/arch
with valuex64
SHOULD be recorded as thek8s.pod.label.mycompany.io/arch
attribute with value"x64"
. - A label
data
with empty string value SHOULD be recorded as thek8s.pod.label.data
attribute with value""
.
§Examples
"my-app"
"x64"
""